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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
            }
        ]
    }
}