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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
개인정보 보호 정책 페이지 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"
    ]
}