Examine source code of Clear All Browsing Data

Inspect and view changes in Clear All Browsing Data 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": "Clear All Browsing Data",
  "description": "Clear all browsing data for the current site.",
  "version": "0.0.1",
  "icons": {
    "16": "/icons/trash_16.png",
    "32": "/icons/trash_32.png",
    "64": "/icons/trash_64.png",
    "128": "/icons/trash_128.png",
    "256": "/icons/trash_256.png"
  },
  "action": {
    "default_title": "Click to clear all browsing data",
    "default_icon": {
      "16": "/icons/trash_16.png",
      "32": "/icons/trash_32.png",
      "64": "/icons/trash_64.png",
      "128": "/icons/trash_128.png",
      "256": "/icons/trash_256.png"
    }
  },
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "tabs",
    "activeTab",
    "browsingData"
  ]
}