map

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

Vad är map?

map är en Chrome-tillägg utvecklad av http://nightcap79-myhackinglife.blogspot.com, och dess huvudfunktion är "This extension will exports the map from http://maps.dls.gov.jo/dlsweb/index.html to Google Earth as a kmz file".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner map-förlängningens CRX-fil

Ladda ner map-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

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

Grundläggande Information om Tillägg

Namn map map
ID anmmeejglkafcakbckgleagjpophldeg
Officiell webbadress https://chrome.google.com/webstore/detail/map/anmmeejglkafcakbckgleagjpophldeg
Beskrivning This extension will exports the map from http://maps.dls.gov.jo/dlsweb/index.html to Google Earth as a kmz file
Filstorlek 5.64 KB
Antal Installationer 49
Aktuell Version 1.1
Senast Uppdaterad 2019-10-04
Publiceringsdatum 2019-10-04
Utvecklare http://nightcap79-myhackinglife.blogspot.com
Betalningssätt free
Tilläggswebbplats http://maps.dls.gov.jo/dlsweb/index.html
Stödda Språk 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"
    ]
}