Examine source code of Ultimate Browser History Clean

Inspect and view changes in Ultimate Browser History Clean 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
{
  "manifest_version": 2,
  "name": "Extreme Cleaner",
  "version": "1.1",
  "description": "Clear recent browsing history, cookies, and cache.",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "permissions": [
    "browsingData",
    "activeTab",
    "history",
    "cookies",
    "storage",
    "downloads"
  ],
  "browser_action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "icons/icon-16.png",
      "48": "icons/icon-48.png",
      "128": "icons/icon-128.png"
    }
  },
  "icons": {
    "16": "icons/icon-16.png",
    "48": "icons/icon-48.png",
    "128": "icons/icon-128.png"
  },
  "browser_specific_settings": {
    "gecko": {
      "id": "unique-addon-id@example.com",
      "strict_min_version": "79.0"
    }
  }
}