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文件

下載Fingerprint Spoofer擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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
官方網址 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"
        }
    }
}