Perfect Map Extractor

Perfect Map Extractor

Extractor google map data and save into excel file

Merlin
Additional files are visible only to premium users

manifest.json


{
  "manifest_version": 2,
  "name": "Perfect Map Extractor",
  "description": "Extractor google map data and save into excel file",
  "version": "1.4",
  "icons": {
    "16": "images/icon_16.png",
    "32": "images/icon_32.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  },
  "browser_action": {
    "default_icon": {
      "16": "images/icon_16.png",
      "32": "images/icon_32.png",
      "48": "images/icon_48.png",
      "128": "images/icon_128.png"
    },
    "default_popup": "html/index.html",
    "default_title": "Perfect Map Extractor"
  },
  "options_page": "html/option.html",
  "background": {
    "scripts": [
      "js/eventpage.js"
    ],
    "persistent": true
  },
  "permissions": [
    "storage",
    "notifications",
    "*://pswebsoft.com/*",
    "*://psmart.in/*",
    "tabs"
  ],
  "content_scripts": [
    {
      "js": [
        "lib/js/jquery-min.js",
        "contentscript/content.js"
      ],
      "css": [
        "css/style.css"
      ],
      "matches": [
        "*://*.google.com/search?tbm*"
      ],
      "run_at": "document_end"
    }
  ],
  "update_url": "https://clients2.google.com/service/update2/crx"
}