Browser Fingerprint Protector

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

What is Browser Fingerprint Protector?

Browser Fingerprint Protector is a Chrome extension developed by Maxim Baz, and its main feature is "Prevents browser fingerprinting by spoofing your plugins, languages and user agent".

Extension Screenshots

screenshot

Download Browser Fingerprint Protector Extension CRX File

Download Browser Fingerprint Protector extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Browser Fingerprint Protector Browser Fingerprint Protector
ID kcklikpoajnpdpjgamjfepagpdkhahpn
Official URL https://chromewebstore.google.com/detail/browser-fingerprint-prote/kcklikpoajnpdpjgamjfepagpdkhahpn
Description Prevents browser fingerprinting by spoofing your plugins, languages and user agent
File Size 11.82 KB
Installation Count 5,062
Current Version 1.3.1
Last Updated 2022-02-02
Publish Date 2020-03-07
Rating 3.58/5 Total 12 Ratings
Developer Maxim Baz
Email [email protected]
Payment Type free
Extension Website https://github.com/maximbaz/browser-fingerprint-protector
Privacy Policy Page URL https://github.com/browserpass/browserpass-extension/blob/master/PRIVACY.md
Supported Languages 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"
    ]
}