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
Eメール [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"
    ]
}