Examine source code of Maps Button for Google Search

Inspect and view changes in Maps Button for Google Search 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
{
  "manifest_version": 3,
  "name": "Maps Button for Google Search",
  "version": "1.4",
  "description": "Restore direct map access from Google Maps results in one click.",
  "icons": {
    "16": "extension_icon.png",
    "48": "extension_icon.png",
    "128": "extension_icon.png"
  },
  "action": {
    "default_title": "Maps Button for Google Search"
  },
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "include_globs": [
        "*://*.google.*/search*"
      ],
      "js": [
        "contentScript.min.js"
      ]
    }
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}