Examine source code of Clear cache and cookies

Inspect and view changes in Clear cache and cookies 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": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "version": "1.1",
  "default_locale": "en",
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "permissions": [
    "storage",
    "browsingData"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "action": {},
  "icons": {
    "16": "/images/16x16.png",
    "48": "/images/48x48.png",
    "64": "/images/64x64.png",
    "96": "/images/96x96-128x128.png",
    "128": "/images/128x128.png"
  },
  "commands": {
    "_execute_action": {
      "description": "__MSG_appName__",
      "suggested_key": "Alt+C"
    }
  },
  "web_accessible_resources": [
    {
      "resources": [
        "images/48x48.png"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "content/content.js"
      ],
      "css": [
        "content/content.css"
      ],
      "run_at": "document_end",
      "all_frames": true
    }
  ]
}