Examine source code of Unsubscribe Button

Inspect and view changes in Unsubscribe Button 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": 2,
  "name": "Unsubscribe Button",
  "description": "Unsubscribe from emails with one click.",
  "version": "1.0.10",
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "images/unsubscribe16.png",
    "48": "images/unsubscribe48.png",
    "128": "images/unsubscribe128.png"
  },
  "page_action": {
    "default_icon": {
      "19": "images/unsubscribe19.png",
      "38": "images/unsubscribe38.png"
    },
    "default_title": "Unsubscribe from emails like this"
  },
  "permissions": [
    "storage",
    "tabs",
    "http://mail.google.com/*",
    "https://mail.google.com/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content.js"
      ]
    }
  ]
}