Examine source code of Gmail Button

Inspect and view changes in Gmail 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": 3,
  "minimum_chrome_version": "100",
  "name": "__MSG_name__",
  "version": "3.1.0",
  "description": "__MSG_description__",
  "default_locale": "en",
  "icons": {
    "128": "icon.png"
  },
  "permissions": [
    "contextMenus"
  ],
  "optional_permissions": [
    "tabs"
  ],
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "action": {
    "default_icon": "icon.png",
    "default_title": "__MSG_actionTitle__"
  }
}