GPS Coordinates for Google Maps

GPS Coordinates for Google Maps

Add a button to Google Maps to get super quickly the GPS coordinates (latitude & longitude) in different formats.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "author": "Cristian Valls",
  "default_locale": "en",
  "version": "3.4",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js",
        "main.js",
        "z.js"
      ],
      "css": [
        "main.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "tabs",
    "contextMenus"
  ],
  "background": {
    "scripts": [
      "background.js",
      "background-z.js"
    ]
  },
  "icons": {
    "16": "icon-16.png",
    "24": "icon-24.png",
    "32": "icon-32.png",
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "web_accessible_resources": [
    "icon-16.png",
    "copy.png",
    "qr.png"
  ]
}