Return Google Maps Search

Return Google Maps Search

restores the google maps button to google search

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Return Google Maps Search",
  "version": "1.1",
  "description": "restores the google maps button to google search",
  "permissions": [],
  "icons": {
    "16": "images/maps.png",
    "32": "images/maps.png",
    "48": "images/maps.png",
    "128": "images/maps.png"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "*://*/*"
      ],
      "include_globs": [
        "*://*.google.*/*"
      ]
    }
  ]
}