Examine source code of Clear History & Web Cache

Inspect and view changes in Clear History & Web Cache 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_app_name__",
  "description": "__MSG_app_description__",
  "short_name": "history & web cache cleaner",
  "version": "3.0.1",
  "default_locale": "en",
  "offline_enabled": true,
  "homepage_url": "https://history-and-cache-clean.freefinancetools.net",
  "icons": {
    "16": "img/icon_16.png",
    "48": "img/icon_48.png",
    "128": "img/icon_128.png"
  },
  "action": {
    "default_icon": {
      "38": "img/icon_38.png"
    },
    "default_title": "__MSG_app_name__",
    "default_popup": "ui/popup.html"
  },
  "background": {
    "service_worker": "js/background.js"
  },
  "options_page": "ui/options.html",
  "permissions": [
    "activeTab",
    "storage",
    "browsingData",
    "cookies",
    "scripting"
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/*"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}