GPC Privacy Choice

GPC Privacy Choice is a research extension that studies usable privacy choice mechanisms on the web

GPC Privacy Choice là gì?

GPC Privacy Choice là một tiện ích mở rộng Chrome được phát triển bởi http://privacytechlab.org, và tính năng chính của nó là "GPC Privacy Choice is a research extension that studies usable privacy choice mechanisms on the web".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng GPC Privacy Choice

Tải xuống các tệp mở rộng GPC Privacy Choice 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 extension is part of a research project at Wesleyan University, Connecticut on helping users to tell websites that they do not want their data to be sold or shared. Please only install this extension if you are participating in our research project. Otherwise, it will not work.                    

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

Tên GPC Privacy Choice GPC Privacy Choice
ID ambkmcacbikgdchhjohhkfngeahpolnk
URL Chính Thức https://chrome.google.com/webstore/detail/gpc-privacy-choice/ambkmcacbikgdchhjohhkfngeahpolnk
Mô tả GPC Privacy Choice is a research extension that studies usable privacy choice mechanisms on the web
Kích Thước Tệp 2.64 MB
Số Lần Cài Đặt 71
Phiên Bản Hiện Tại 2.9.0
Cập Nhật Lần Cuối 2022-11-07
Ngày Phát Hành 2022-04-10
Đánh Giá 1.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển http://privacytechlab.org
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://privacytechlab.org
URL Trang Trợ Giúp https://github.com/privacy-tech-lab/gpc-privacy-choice
Ngôn Ngữ Được Hỗ Trợ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GPC Privacy Choice",
    "version": "2.9.0",
    "description": "GPC Privacy Choice is a research extension that studies usable privacy choice mechanisms on the web",
    "permissions": [
        "webRequest",
        "webNavigation",
        "storage",
        "tabs",
        "contentSettings",
        "geolocation",
        "declarativeNetRequest"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_title": "GPC Privacy Choice"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "contentScript.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "manifest_version": 3,
    "web_accessible_resources": [
        {
            "resources": [
                "adDomains.txt",
                "json\/*.json"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "icons": {
        "32": ".\/img\/gpc-choice-icon.png",
        "128": ".\/img\/gpc-choice-icon.png"
    },
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self'"
    },
    "declarative_net_request": {
        "rule_resources": [
            {
                "id": "universal_GPC",
                "enabled": false,
                "path": "rulesets\/global.json"
            },
            {
                "id": "advertising",
                "enabled": false,
                "path": "rulesets\/Advertising.json"
            },
            {
                "id": "FG",
                "enabled": false,
                "path": "rulesets\/FingerprintingGeneral.json"
            },
            {
                "id": "FI",
                "enabled": false,
                "path": "rulesets\/FingerprintingInvasive.json"
            },
            {
                "id": "social",
                "enabled": false,
                "path": "rulesets\/Social.json"
            },
            {
                "id": "disconnect",
                "enabled": false,
                "path": "rulesets\/Disconnect.json"
            },
            {
                "id": "cryptomining",
                "enabled": false,
                "path": "rulesets\/Cryptomining.json"
            },
            {
                "id": "analytics",
                "enabled": false,
                "path": "rulesets\/Analytics.json"
            },
            {
                "id": "content",
                "enabled": false,
                "path": "rulesets\/Content.json"
            }
        ]
    }
}