Examine source code of Send from Gmail (by Google)

Inspect and view changes in Send from Gmail (by Google) 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": "Send from Gmail (by Google)",
  "version": "1.17",
  "description": "Makes Gmail your default email application and provides a button to compose a Gmail message to quickly share a link via email",
  "content_scripts": [
    {
      "all_frames": true,
      "js": [
        "mailto.js"
      ],
      "matches": [
        "http://*/*",
        "https://*/*"
      ]
    }
  ],
  "permissions": [
    "tabs",
    "storage",
    "scripting"
  ],
  "host_permissions": [
    "http://*/*",
    "https://*/*",
    "http://*.google.com/"
  ],
  "background": {
    "service_worker": "background.js"
  },
  "options_page": "options.html",
  "action": {
    "default_icon": "images/gmail-extension-19.png",
    "default_title": "Send this link with Gmail"
  },
  "icons": {
    "16": "images/gmail-extension-16.png",
    "32": "images/gmail-extension-32.png",
    "64": "images/gmail-extension-64.png",
    "128": "images/gmail-extension-128.png"
  },
  "minimum_chrome_version": "116"
}