Browser Fingerprint Protector

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

Co to jest Browser Fingerprint Protector?

Browser Fingerprint Protector to rozszerzenie Chrome opracowane przez Maxim Baz, a jego główną funkcją jest „Prevents browser fingerprinting by spoofing your plugins, languages and user agent”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Browser Fingerprint Protector

Pobierz pliki rozszerzeń Browser Fingerprint Protector w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Browser Fingerprint Protector Browser Fingerprint Protector
ID kcklikpoajnpdpjgamjfepagpdkhahpn
Oficjalny URL https://chromewebstore.google.com/detail/browser-fingerprint-prote/kcklikpoajnpdpjgamjfepagpdkhahpn
Opis Prevents browser fingerprinting by spoofing your plugins, languages and user agent
Rozmiar pliku 11.82 KB
Liczba instalacji 5,062
Aktualna Wersja 1.3.1
Ostatnia Aktualizacja 2022-02-02
Data Publikacji 2020-03-07
Ocena 3.58/5 Łącznie 12 Oceny
Deweloper Maxim Baz
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/maximbaz/browser-fingerprint-protector
Adres URL Strony Polityki Prywatności https://github.com/browserpass/browserpass-extension/blob/master/PRIVACY.md
Obsługiwane Języki 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"
    ]
}