chromey 2.41.0

Concurrent chrome devtools protocol automation library for Rust
Documentation
/// Firewall protection. This does nothing without the [firewall] flag.
#[cfg(feature = "firewall")]
pub(crate) fn block_website(u: &str) -> bool {
    spider_firewall::is_bad_website_url_clean(&u)
}

/// Firewall protection. This does nothing without the [firewall] flag.
#[cfg(not(feature = "firewall"))]
pub(crate) fn block_website(_u: &str) -> bool {
    false
}

/// Firewall protection xhr. This does nothing without the [firewall] flag.
#[cfg(feature = "firewall")]
pub(crate) fn block_xhr(u: &str) -> bool {
    spider_firewall::is_networking_website_url_clean(&u)
}

/// Firewall protection xhr. This does nothing without the [firewall] flag.
#[cfg(not(feature = "firewall"))]
pub(crate) fn block_xhr(_u: &str) -> bool {
    false
}

/// Firewall protection ads. This does nothing without the [firewall] flag.
#[cfg(feature = "firewall")]
pub(crate) fn block_ads(u: &str) -> bool {
    spider_firewall::is_ad_website_url_clean(&u)
}

/// Firewall protection ads. This does nothing without the [firewall] flag.
#[cfg(not(feature = "firewall"))]
pub(crate) fn block_ads(_u: &str) -> bool {
    false
}