Share To Google Maps

Share To Google Maps

This Chrome extension enables you to share any address available on any of the websites to Google map.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 3,
  "name": "Share To Google Maps",
  "description": "This Chrome extension enables you to share any address available on any of the websites to Google map.",
  "version": "0.1",
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "<all_urls>"
      ]
    }
  ],
  "icons": {
    "16": "./Icon16.png",
    "32": "./Icon32.png",
    "64": "./Icon64.png",
    "128": "./Icon128.png"
  },
  "background": {
    "service_worker": "background.js"
  },
  "action": {
    "default_popup": "index.html",
    "default_icon": "Icon32.png"
  },
  "permissions": [
    "contextMenus",
    "notifications",
    "gcm",
    "storage"
  ],
  "update_url": "https://edge.microsoft.com/extensionwebstorebase/v1/crx"
}