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


{
  "manifest_version": 2,
  "name": "__MSG_appName__",
  "description": "__MSG_appDesc__",
  "author": "Cristian Valls",
  "default_locale": "en",
  "version": "4.3",
  "content_scripts": [
    {
      "matches": [
        "<all_urls>"
      ],
      "js": [
        "jquery.js",
        "main.js"
      ],
      "css": [
        "main.css"
      ],
      "run_at": "document_idle"
    }
  ],
  "permissions": [
    "tabs",
    "contextMenus",
    "storage"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "icons": {
    "16": "i-16.png",
    "24": "i-24.png",
    "32": "i-32.png",
    "48": "i-48.png",
    "64": "i-64.png",
    "128": "i-128.png"
  },
  "web_accessible_resources": [
    "i-16.png",
    "co.png",
    "qr.png",
    "dn.png"
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{9ecfe357-3393-40ad-9420-9f36ad6d30aa}"
    }
  }
}