map

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

What is map?

map is a Chrome extension developed by http://nightcap79-myhackinglife.blogspot.com, and its main feature is "This extension will exports the map from http://maps.dls.gov.jo/dlsweb/index.html to Google Earth as a kmz file".

Extension Screenshots

screenshot
screenshot

Download map Extension CRX File

Download map extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

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

Extension Basic Information

Name map map
ID anmmeejglkafcakbckgleagjpophldeg
Official URL https://chrome.google.com/webstore/detail/map/anmmeejglkafcakbckgleagjpophldeg
Description This extension will exports the map from http://maps.dls.gov.jo/dlsweb/index.html to Google Earth as a kmz file
File Size 5.64 KB
Installation Count 49
Current Version 1.1
Last Updated 2019-10-04
Publish Date 2019-10-04
Developer http://nightcap79-myhackinglife.blogspot.com
Payment Type free
Extension Website http://maps.dls.gov.jo/dlsweb/index.html
Supported Languages en
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"
    ]
}