Examine source code of Gmail Unsubscribe

Inspect and view changes in Gmail Unsubscribe 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",
  "description": "A chrome extension to unsubscribe emails in gmail",
  "version": "0.1.1",
  "manifest_version": 3,
  "name": "Gmail Unsubscribe",
  "icons": {
    "16": "icon-16.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "background": {
    "service_worker": "service_worker.bundle.js"
  },
  "commands": {
    "unsubscribe": {
      "description": "Unsubscribe from mailing list",
      "suggested_key": {
        "default": "Alt+U",
        "mac": "Command+U"
      }
    }
  },
  "content_scripts": [
    {
      "matches": [
        "https://mail.google.com/*"
      ],
      "js": [
        "content_script.bundle.js"
      ]
    }
  ]
}