extract-browser-url 0.1.2

extract browser URL
Documentation

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.1"

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.