map

map

This extension will exports the map from http://maps.dls.gov.jo/dlsweb/index.html to Google Earth as a kmz file

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "map",
  "version": "1.1",
  "manifest_version": 2,
  "content_scripts": [
    {
      "matches": [
        "http://maps.dls.gov.jo/*"
      ],
      "js": [
        "content.js"
      ],
      "run_at": "document_end"
    }
  ],
  "permissions": [
    "activeTab",
    "background",
    "webRequest",
    "webRequestBlocking",
    "http://maps.dls.gov.jo/*",
    "webNavigation"
  ],
  "background": {
    "scripts": [
      "background.js"
    ]
  },
  "browser_action": {},
  "web_accessible_resources": [
    "script.js"
  ]
}