Browser Fingerprint Protector

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

Browser Fingerprint Protector là gì?

Browser Fingerprint Protector là một tiện ích mở rộng Chrome được phát triển bởi Maxim Baz, và tính năng chính của nó là "Prevents browser fingerprinting by spoofing your plugins, languages and user agent".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Browser Fingerprint Protector

Tải xuống các tệp mở rộng Browser Fingerprint Protector dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Browser Fingerprint Protector Browser Fingerprint Protector
ID kcklikpoajnpdpjgamjfepagpdkhahpn
URL Chính Thức https://chromewebstore.google.com/detail/browser-fingerprint-prote/kcklikpoajnpdpjgamjfepagpdkhahpn
Mô tả Prevents browser fingerprinting by spoofing your plugins, languages and user agent
Kích Thước Tệp 11.82 KB
Số Lần Cài Đặt 5,062
Phiên Bản Hiện Tại 1.3.1
Cập Nhật Lần Cuối 2022-02-02
Ngày Phát Hành 2020-03-07
Đánh Giá 3.58/5 Tổng số 12 Đánh Giá
Nhà Phát Triển Maxim Baz
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/maximbaz/browser-fingerprint-protector
URL Trang Chính Sách Bảo Mật https://github.com/browserpass/browserpass-extension/blob/master/PRIVACY.md
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}