Privacy Sandbox Analysis Tool

Privacy Sandbox Analysis Tool

Tooling for understanding cookie usage and guidance on new privacy-preserving Chrome APIs.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Privacy Sandbox Analysis Tool",
  "description": "Tooling for understanding cookie usage and guidance on new privacy-preserving Chrome APIs.",
  "version": "0.8.0",
  "manifest_version": 3,
  "icons": {
    "16": "icons/icon-16.png",
    "32": "icons/icon-32.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "permissions": [
    "storage",
    "tabs",
    "webNavigation",
    "webRequest",
    "cookies",
    "debugger",
    "management",
    "contentSettings",
    "scripting"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "devtools_page": "devtools/devtools.html",
  "background": {
    "service_worker": "service-worker.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "js": [
        "content-script.js"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ],
  "action": {
    "default_popup": "popup/index.html",
    "default_icon": "icons/icon-48.png"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "assets/data/*.json",
        "data/*json",
        "report/index.html"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}