map

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

Hvad er map?

map er en Chrome-udvidelse udviklet af http://nightcap79-myhackinglife.blogspot.com, og dens hovedfunktion er "This extension will exports the map from http://maps.dls.gov.jo/dlsweb/index.html to Google Earth as a kmz file".

Udvidelsesskærmbilleder

screenshot
screenshot

Download map-udvidelses-CRX-fil

Download map-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

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

Grundlæggende oplysninger om udvidelsen

Navn map map
ID anmmeejglkafcakbckgleagjpophldeg
Officiel URL https://chrome.google.com/webstore/detail/map/anmmeejglkafcakbckgleagjpophldeg
Beskrivelse This extension will exports the map from http://maps.dls.gov.jo/dlsweb/index.html to Google Earth as a kmz file
Filstørrelse 5.64 KB
Antal Installationer 49
Nuværende Version 1.1
Senest Opdateret 2019-10-04
Udgivelsesdato 2019-10-04
Udvikler http://nightcap79-myhackinglife.blogspot.com
Betalingsmetode free
Udvidelseswebsted http://maps.dls.gov.jo/dlsweb/index.html
Understøttede Sprog 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"
    ]
}