Browser Fingerprint Protector

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

什么是Browser Fingerprint Protector?

Browser Fingerprint Protector是由Maxim Baz开发的Chrome扩展程序,该扩展的主要功能是“Prevents browser fingerprinting by spoofing your plugins, languages and user agent”。

扩展截图

screenshot

下载Browser Fingerprint Protector扩展crx文件

下载Browser Fingerprint Protector扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Browser Fingerprint Protector Browser Fingerprint Protector
ID kcklikpoajnpdpjgamjfepagpdkhahpn
官方URL https://chromewebstore.google.com/detail/browser-fingerprint-prote/kcklikpoajnpdpjgamjfepagpdkhahpn
简介 Prevents browser fingerprinting by spoofing your plugins, languages and user agent
文件大小 11.82 KB
安装次数 5,062
当前版本 1.3.1
更新时间 2022-02-02
上架时间 2020-03-07
评分 3.58/5 共12次评分
开发者 Maxim Baz
电子邮箱 [email protected]
付费类型 free
扩展官网 https://github.com/maximbaz/browser-fingerprint-protector
隐私政策页面URL https://github.com/browserpass/browserpass-extension/blob/master/PRIVACY.md
支持的语言 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"
    ]
}