Examine source code of Clear Cache Chrome

Inspect and view changes in Clear Cache Chrome 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_shortDesc__",
  "version": "1.1.7",
  "default_locale": "en",
  "icons": {
    "64": "logo/lg-64_x_64.png"
  },
  "options_page": "options/options.html",
  "action": {
    "default_title": "Clear Cache Chrome"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "storage",
    "browsingData",
    "notifications"
  ],
  "host_permissions": [
    "<all_urls>"
  ],
  "background": {
    "service_worker": "service-worker.js"
  }
}