Global Privacy Control (GPC) Inspector

Global Privacy Control (GPC) Inspector

This GPC Chrome Extension enables the Global Privacy Control opt-out signal and evaluates how websites respond to the setting

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Global Privacy Control (GPC) Inspector",
  "version": "0.1.4",
  "description": "This GPC Chrome Extension enables the Global Privacy Control opt-out signal and evaluates how websites respond to the setting",
  "permissions": [
    "storage",
    "declarativeNetRequest",
    "declarativeNetRequestFeedback",
    "tabs",
    "scripting",
    "webRequest"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "content_scripts": [
    {
      "run_at": "document_start",
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "match_origin_as_fallback": true,
      "all_frames": true,
      "js": [
        "contentScript.js"
      ]
    }
  ],
  "background": {
    "service_worker": "background.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "inject.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "images/shield-16.png",
    "32": "images/shield-32.png",
    "48": "images/shield-48.png",
    "128": "images/shield-128.png"
  },
  "action": {
    "default_icon": {
      "16": "images/shield-16.png",
      "32": "images/shield-32.png",
      "48": "images/shield-48.png",
      "128": "images/shield-128.png"
    },
    "default_title": "Global Privacy Control Inspector",
    "default_popup": "popup.html"
  },
  "manifest_version": 3
}