Fingerprint Spoofer

Helps to spoof browser fingerprinting

Fingerprint Spoofer란 무엇입니까?

Fingerprint Spoofer은(는) fingerprint-spoofer에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Helps to spoof browser fingerprinting"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot

Fingerprint Spoofer 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Browser fingerprinting refers to the practice of collecting information about a user's web browser and using it to create a unique digital profile that can be used to track the user's online activities across different websites. This can include information about the user's device, operating system, browser version, installed plugins, screen resolution, and more.
A combination of these attributes can be used to identify the user.

We want to safeguard the user against this profiling. Here is a Chrome extension that anonymizes the user.

-It can spoof the navigator values. It replaces real value with dummy values.
-It can protect against Canvas fingerprinting. It replaces canvas elements with a dynamically generated image, which is unique every time.
-It can spoof the User Agent to a random device
-Block Images
-Block Javascript from running on pages
try out our Chrome extension here:
-https://amiunique.org/
-https://coveryourtracks.eff.org/
-https://browserleaks.com/canvas - for canvas fingerprinting                    

확장 프로그램 기본 정보

이름 Fingerprint Spoofer Fingerprint Spoofer
ID facgnnelgcipeopfbjcajpaibhhdjgcp
공식 URL https://chromewebstore.google.com/detail/fingerprint-spoofer/facgnnelgcipeopfbjcajpaibhhdjgcp
설명 Helps to spoof browser fingerprinting
파일 크기 15.62 MB
설치 횟수 562
현재 버전 1.0
최근 업데이트 2023-04-13
출시 날짜 2023-04-11
개발자 fingerprint-spoofer
이메일 [email protected]
결제 유형 free
도움말 페이지 URL https://github.com/noble-8/browserFingerPrintSpoofing
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Fingerprint Spoofer",
    "description": "Helps to spoof browser fingerprinting",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "js\/background.js"
    },
    "permissions": [
        "storage",
        "scripting",
        "contentSettings",
        "declarativeNetRequestWithHostAccess"
    ],
    "host_permissions": [
        ""
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "js\/navigatorSpoofScript.js",
                "js\/canvasSpoofScript.js"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": ".\/images\/fingerprint-16.png",
            "32": ".\/images\/fingerprint-32.png",
            "48": ".\/images\/fingerprint-48.png",
            "128": ".\/images\/fingerprint-128.png"
        }
    }
}