Canvas Blocker - Fingerprint Protect

Prevent HTML canvas element from generating a unique identification key to protect user's privacy

Canvas Blocker - Fingerprint Protect là gì?

Canvas Blocker - Fingerprint Protect là một tiện ích mở rộng Chrome được phát triển bởi joue.quroi, và tính năng chính của nó là "Prevent HTML canvas element from generating a unique identification key to protect user's privacy".

Ả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 Canvas Blocker - Fingerprint Protect

Tải xuống các tệp mở rộng Canvas Blocker - Fingerprint Protect 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

                        This browser extension safeguards user privacy by preventing malicious scripts from using the HTML canvas element for user fingerprinting. It introduces slight changes to the data generated by the canvas element when specific methods are invoked, rendering it unusable for fingerprinting. In comparison to similar extensions, this one is lighter and employs a more efficient method to obstruct fingerprinting across all frame elements (top and subframes). The extension operates in three modes:

1. Random noise
2. Random noise (per page) to maintain a consistent identity within the current page session
3. Fixed noise to sustain a constant yet unique identity continuously

Key Features:
1. Minimal footprint fingerprint defender
2. Ability to block or disable fingerprinting on specific hostnames
3. Notification when canvas fingerprinting is detected
4. Option to disable notification for select or all hostnames
5. Compatibility with cross-origin (CORS) and sandboxed iframes (such as Disqus and Hangouts)

Notes:
This extension doesn't entirely block the canvas element. Instead, it modifies two methods to prevent the JavaScript engine from creating a unique identification key from this element.

What is Canvas Fingerprinting:
Canvas fingerprinting is a method among several browser fingerprinting techniques used for tracking online users. It enables websites to identify and monitor visitors by leveraging the HTML5 canvas element rather than browser cookies or similar means. This technique functions by exploiting the HTML5 canvas element. When a user visits a webpage, the fingerprinting script initially writes text using the preferred font and size and adds background colors. Subsequently, the script calls the Canvas API's ToDataURL method to retrieve canvas pixel data in dataURL format, essentially a Base64 encoded representation of binary pixel data. Lastly, the script hashes the text-encoded pixel data, creating a unique fingerprint.                    

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

Tên Canvas Blocker - Fingerprint Protect Canvas Blocker - Fingerprint Protect
ID nomnklagbgmgghhjidfhnoelnjfndfpd
URL Chính Thức https://chromewebstore.google.com/detail/canvas-blocker-fingerprin/nomnklagbgmgghhjidfhnoelnjfndfpd
Mô tả Prevent HTML canvas element from generating a unique identification key to protect user's privacy
Kích Thước Tệp 59.76 KB
Số Lần Cài Đặt 28,018
Phiên Bản Hiện Tại 0.2.0
Cập Nhật Lần Cuối 2023-11-02
Ngày Phát Hành 2020-05-26
Đánh Giá 4.06/5 Tổng số 32 Đánh Giá
Nhà Phát Triển joue.quroi
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://webextension.org/listing/canvas-fingerprint-blocker.html
URL Trang Trợ Giúp https://webextension.org/listing/canvas-fingerprint-blocker.html
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "0.2.0",
    "name": "Canvas Blocker - Fingerprint Protect",
    "description": "Prevent HTML canvas element from generating a unique identification key to protect user's privacy",
    "icons": {
        "16": "\/data\/icons\/16.png",
        "32": "\/data\/icons\/32.png",
        "48": "\/data\/icons\/48.png",
        "64": "\/data\/icons\/64.png",
        "128": "\/data\/icons\/128.png",
        "256": "\/data\/icons\/256.png",
        "512": "\/data\/icons\/512.png"
    },
    "permissions": [
        "notifications",
        "storage",
        "contextMenus",
        "scripting"
    ],
    "host_permissions": [
        "*:\/\/*\/*"
    ],
    "homepage_url": "https:\/\/webextension.org\/listing\/canvas-fingerprint-blocker.html",
    "background": {
        "service_worker": "worker.js"
    },
    "action": [],
    "options_ui": {
        "open_in_tab": true,
        "page": "\/data\/options\/index.html"
    },
    "content_scripts": [
        {
            "world": "MAIN",
            "matches": [
                "*:\/\/*\/*"
            ],
            "match_about_blank": true,
            "match_origin_as_fallback": true,
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "\/data\/inject\/main.js"
            ]
        },
        {
            "world": "ISOLATED",
            "matches": [
                "*:\/\/*\/*"
            ],
            "match_about_blank": true,
            "match_origin_as_fallback": true,
            "all_frames": true,
            "run_at": "document_start",
            "js": [
                "\/data\/inject\/isolated.js"
            ]
        }
    ]
}