Examine source code of Remove Cookies For Site

Inspect and view changes in Remove Cookies For Site source codes across current and past versions
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Remove Cookies For Site",
  "version": "1.7",
  "description": "A Chrome extension to remove all cookies for the current site.",
  "permissions": [
    "cookies"
  ],
  "host_permissions": [
    "*://*/*"
  ],
  "background": {
    "service_worker": "cookie_handler.js"
  },
  "icons": {
    "48": "broken-cookie48.png",
    "128": "broken-cookie128.png"
  },
  "action": {
    "default_icon": {
      "48": "broken-cookie48.png",
      "128": "broken-cookie128.png"
    }
  }
}