MapIT

MapIT

This extension helps in showing location on Google maps or search a phrase on Google search

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "MapIT",
  "description": "This extension helps in showing location on Google maps or search a phrase on Google search",
  "version": "2.2",
  "short_name": "Mapit",
  "permissions": [
    "activeTab"
  ],
  "icons": {
    "32": "32.png",
    "128": "128.png"
  },
  "browser_action": {
    "default_icon": "icon.png",
    "default_title": "Select location or search phrase & click appropriate popup icon"
  },
  "content_scripts": [
    {
      "matches": [
        "https://*/*",
        "http://*/*"
      ],
      "js": [
        "content.js"
      ],
      "css": [
        "styleicon.css"
      ],
      "run_at": "document_end"
    }
  ],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}