extract-browser-url 0.1.1

extract browser URL
docs.rs failed to build extract-browser-url-0.1.1
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: extract-browser-url-0.1.2

extract-browser-url

A Rust library for extracting the browser's URL using native platform APIs.

Installation

Add to your Cargo.toml:

[dependencies]

extract-browser-url = "0.1.0"

Or via the CLI:

cargo add extract-browser-url

Quick Start

 use extract_browser_url::extract_url;
 fn main(){
     let url=extract_url(3000,false).unwrap();
     println!("the url is: {}",url)
 }

Supported Browsers

Browser Windows
Chrome
Firefox
Edge

📄 License

Licensed under the MIT License. See LICENSE for details.