Browser Fingerprint Protector

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

Cos'è Browser Fingerprint Protector?

Browser Fingerprint Protector è un'estensione di Chrome sviluppata da Maxim Baz, e la sua funzione principale è "Prevents browser fingerprinting by spoofing your plugins, languages and user agent".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Browser Fingerprint Protector

Scarica i file di estensione Browser Fingerprint Protector in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Browser Fingerprint Protector Browser Fingerprint Protector
ID kcklikpoajnpdpjgamjfepagpdkhahpn
URL Ufficiale https://chromewebstore.google.com/detail/browser-fingerprint-prote/kcklikpoajnpdpjgamjfepagpdkhahpn
Descrizione Prevents browser fingerprinting by spoofing your plugins, languages and user agent
Dimensione del File 11.82 KB
Conteggio Installazioni 5,062
Versione Corrente 1.3.1
Ultimo Aggiornamento 2022-02-02
Data di Pubblicazione 2020-03-07
Valutazione 3.58/5 Totale 12 Valutazioni
Sviluppatore Maxim Baz
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/maximbaz/browser-fingerprint-protector
URL della Pagina della Politica sulla Privacy https://github.com/browserpass/browserpass-extension/blob/master/PRIVACY.md
Lingue Supportate 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"
    ]
}