https://github.com/un-rust/browser-paths
🧐 Get the path of the browser, support Chrome and Edge.
https://github.com/un-rust/browser-paths
browser chrome edge path
Last synced: 4 months ago
JSON representation
🧐 Get the path of the browser, support Chrome and Edge.
- Host: GitHub
- URL: https://github.com/un-rust/browser-paths
- Owner: un-rust
- License: apache-2.0
- Created: 2026-02-22T02:45:49.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-02-23T06:21:50.000Z (4 months ago)
- Last Synced: 2026-02-24T11:32:30.309Z (4 months ago)
- Topics: browser, chrome, edge, path
- Language: Rust
- Homepage:
- Size: 43 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: .github/SECURITY.md
Awesome Lists containing this project
README
# 🧐 browser-paths





Get the path of the browser, support Chrome and Edge.
**[Full documentation →](https://docs.rs/browser-paths/)**
## Quick start
```sh
cargo add browser-paths
```
## Usage
```rust
use browser_paths::{BrowserKind, get_browser_path};
fn main() {
let chrome_path = get_browser_path(BrowserKind::Chrome);
println!("chrome_path: {:?}", chrome_path);
let edge_path = get_browser_path(BrowserKind::Edge);
println!("edge_path: {:?}", edge_path);
}
```
## License
Published under the [Apache-2.0](./LICENSE) license.
Made by [@UnRUST](https://github.com/un-rust) 💛
---
_🛠️ auto updated with [automd-rs](https://github.com/betterhyq/automd-rs)_