Google Maps Button Search

Google Maps Button Search

Restore direct map access from Google Search results with one click, bypassing recent EU regulation.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Google Maps Button Search",
  "key": "MIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAiYpF+tGsVgY1yIH2YGlKmtRym+wmg1e62SQ4WM5Umo2lypqGgSFm6u6GJqDGWgD5gf7pBD5JOncD9FHIaVke0SrAghk2yFxr0N5VQZpYx1GmrzTALdMvJye7+BmUthmdhRH+kEOo9W2eNhf2RkhBLtVzMOuCeVR63pqOP9jIvgvbox1oOw74lZ2jHM2YhZ8poV2V3oNhh/YAZeIDxIE5zJRfbkC/MunvpA/eE6ha6pKWQwV+Aat+Nc0/qLXmjgSLulWHi/yxpBfyyWpc8J8+YGqjBcJsgADsT3iRQnhHsUuSaCEf04YWO6nwlhG8Tl6+TE9MwjsLMgFwyKLFvWGdlQIDAQAB",
  "version": "1.7",
  "description": "Restore direct map access from Google Search results with one click, bypassing recent EU regulation.",
  "icons": {
    "16": "extension_icon.png",
    "48": "extension_icon.png",
    "128": "extension_icon.png"
  },
  "action": {
    "default_title": "Bring Google Maps Back"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*/*"
      ],
      "include_globs": [
        "*://*.google.*/search*"
      ],
      "js": [
        "contentScript.min.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "cs.css"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "star-mark.svg"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "buymeacoffee.svg"
      ],
      "matches": [
        "*://*/*"
      ]
    },
    {
      "resources": [
        "close.svg"
      ],
      "matches": [
        "*://*/*"
      ]
    }
  ]
}