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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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"
    ]
}