Browser Fingerprint Protector

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

Browser Fingerprint Protectorคืออะไร?

Browser Fingerprint Protector เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Maxim Baz และคุณลักษณะหลักของมันคือ "Prevents browser fingerprinting by spoofing your plugins, languages and user agent"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Browser Fingerprint Protector

ดาวน์โหลดไฟล์ส่วนขยาย 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"
    ]
}