browser-info 1.0.0

Cross-platform(planned) library retrieving active browser URL and detailed information
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[cfg(target_os = "windows")]
pub mod windows;

#[cfg(target_os = "macos")]
pub mod macos;

#[cfg(any(
    all(feature = "devtools", target_os = "windows"),
    all(doc, feature = "devtools")
))]
pub mod chrome_devtools;

// 将来の拡張用
// pub mod firefox_remote;