Exif Spy

Exif Spy

Shows place at Google Maps for images with GEO data.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "__MSG_extName__",
  "description": "__MSG_extDescription__",
  "version": "1.1.8",
  "manifest_version": 2,
  "default_locale": "en",
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  },
  "background": {
    "scripts": [
      "scripts/background.js"
    ]
  },
  "page_action": {
    "default_icon": {
      "16": "icons/16.png",
      "19": "icons/19.png",
      "38": "icons/38.png",
      "48": "icons/48.png",
      "128": "icons/128.png"
    },
    "default_title": "__MSG_extName__",
    "default_popup": "popup.html"
  },
  "permissions": [
    "contextMenus",
    "tabs",
    "storage",
    "geolocation",
    "http://*/*",
    "https://*/*"
  ],
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "bower_components/jquery/dist/jquery.min.js",
        "lib/jquery.exif.js",
        "lib/leaflet.js",
        "scripts/main.js",
        "scripts/options.js"
      ],
      "css": [
        "lib/leaflet.css"
      ]
    }
  ],
  "minimum_chrome_version": "16.0.0.0",
  "web_accessible_resources": [
    "icons/maps.png",
    "lib/images/*"
  ],
  "options_page": "options.html"
}