map

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

mapคืออะไร?

map เป็นส่วนขยายของ Chrome ที่พัฒนาโดย http://nightcap79-myhackinglife.blogspot.com และคุณลักษณะหลักของมันคือ "This extension will exports the map from http://maps.dls.gov.jo/dlsweb/index.html to Google Earth as a kmz file"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย map

ดาวน์โหลดไฟล์ส่วนขยาย map ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

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

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ map map
ID anmmeejglkafcakbckgleagjpophldeg
URL อย่างเป็นทางการ https://chrome.google.com/webstore/detail/map/anmmeejglkafcakbckgleagjpophldeg
คำอธิบาย This extension will exports the map from http://maps.dls.gov.jo/dlsweb/index.html to Google Earth as a kmz file
ขนาดไฟล์ 5.64 KB
จำนวนการติดตั้ง 49
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2019-10-04
วันที่เผยแพร่ 2019-10-04
ผู้พัฒนา http://nightcap79-myhackinglife.blogspot.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://maps.dls.gov.jo/dlsweb/index.html
ภาษาที่รองรับ 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"
    ]
}