Fingerprint Spoofer

Helps to spoof browser fingerprinting

Fingerprint Spooferคืออะไร?

Fingerprint Spoofer เป็นส่วนขยายของ Chrome ที่พัฒนาโดย fingerprint-spoofer และคุณลักษณะหลักของมันคือ "Helps to spoof browser fingerprinting"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Fingerprint Spoofer

ดาวน์โหลดไฟล์ส่วนขยาย 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
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"
        }
    }
}