GPC Privacy Choice

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

什么是GPC Privacy Choice?

GPC Privacy Choice是由http://privacytechlab.org开发的Chrome扩展程序,该扩展的主要功能是“GPC Privacy Choice is a research extension that studies usable privacy choice mechanisms on the web”。

扩展截图

screenshot
screenshot
screenshot
screenshot

下载GPC Privacy Choice扩展crx文件

下载GPC Privacy Choice扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 GPC Privacy Choice GPC Privacy Choice
ID ambkmcacbikgdchhjohhkfngeahpolnk
官方URL https://chrome.google.com/webstore/detail/gpc-privacy-choice/ambkmcacbikgdchhjohhkfngeahpolnk
简介 GPC Privacy Choice is a research extension that studies usable privacy choice mechanisms on the web
文件大小 2.64 MB
安装次数 71
当前版本 2.9.0
更新时间 2022-11-07
上架时间 2022-04-10
评分 1.00/5 共1次评分
开发者 http://privacytechlab.org
电子邮箱 [email protected]
付费类型 free
扩展官网 https://privacytechlab.org
帮助页面URL https://github.com/privacy-tech-lab/gpc-privacy-choice
支持的语言 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"
            }
        ]
    }
}