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
官方網址 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"
    ]
}