Browser Fingerprint Protector

Prevents browser fingerprinting by spoofing your plugins, languages and user agent

Co je Browser Fingerprint Protector?

Browser Fingerprint Protector je rozšíření Chrome vyvinuté Maxim Baz, a jeho hlavní funkcí je „Prevents browser fingerprinting by spoofing your plugins, languages and user agent“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Browser Fingerprint Protector

Stáhněte si soubory rozšíření Browser Fingerprint Protector ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Prevents browser fingerprinting by spoofing your plugins, languages and user agent.

Test using https://whoer.net, it should report Windows OS, only English language and no plugins.                    

Základní Informace o Rozšíření

Název Browser Fingerprint Protector Browser Fingerprint Protector
ID kcklikpoajnpdpjgamjfepagpdkhahpn
Oficiální URL https://chromewebstore.google.com/detail/browser-fingerprint-prote/kcklikpoajnpdpjgamjfepagpdkhahpn
Popis Prevents browser fingerprinting by spoofing your plugins, languages and user agent
Velikost souboru 11.82 KB
Počet instalací 5,062
Aktuální Verze 1.3.1
Poslední Aktualizace 2022-02-02
Datum Vydání 2020-03-07
Hodnocení 3.58/5 Celkem 12 Hodnocení
Vývojář Maxim Baz
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/maximbaz/browser-fingerprint-protector
URL Stránky Zásad Ochrany Soukromí https://github.com/browserpass/browserpass-extension/blob/master/PRIVACY.md
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Browser Fingerprint Protector",
    "description": "Prevents browser fingerprinting by spoofing your plugins, languages and user agent",
    "version": "1.3.1",
    "homepage_url": "https:\/\/github.com\/maximbaz\/browser-fingerprint-protector",
    "author": "Maxim Baz",
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "",
        "webRequest",
        "webRequestBlocking"
    ],
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_start",
            "all_frames": true
        }
    ],
    "web_accessible_resources": [
        "inject.js"
    ]
}