Google Maps Button Reviver

Google Maps Button Reviver

Restore the 'Maps' button in your Google searches & replace the static map with an interactive one.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "__MSG_extensionName__",
  "version": "1.3.1",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  },
  "content_scripts": [
    {
      "matches": [
        "*://*.google.at/*",
        "*://*.google.be/*",
        "*://*.google.bg/*",
        "*://*.google.co.jp/*",
        "*://*.google.co.uk/*",
        "*://*.google.com.au/*",
        "*://*.google.com/*",
        "*://*.google.cy/*",
        "*://*.google.cz/*",
        "*://*.google.de/*",
        "*://*.google.dk/*",
        "*://*.google.ee/*",
        "*://*.google.es/*",
        "*://*.google.fi/*",
        "*://*.google.fr/*",
        "*://*.google.gr/*",
        "*://*.google.hr/*",
        "*://*.google.hu/*",
        "*://*.google.ie/*",
        "*://*.google.it/*",
        "*://*.google.lt/*",
        "*://*.google.lu/*",
        "*://*.google.lv/*",
        "*://*.google.mt/*",
        "*://*.google.nl/*",
        "*://*.google.pl/*",
        "*://*.google.pt/*",
        "*://*.google.ro/*",
        "*://*.google.se/*",
        "*://*.google.si/*",
        "*://*.google.sk/*"
      ],
      "css": [
        "styles/style.css"
      ],
      "js": [
        "scripts/reviveGoogleMaps.min.js"
      ],
      "run_at": "document_end"
    }
  ],
  "action": {
    "default_icon": {
      "16": "images/icon16.png",
      "48": "images/icon48.png",
      "128": "images/icon128.png"
    }
  },
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  }
}