map

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

map là gì?

map là một tiện ích mở rộng Chrome được phát triển bởi http://nightcap79-myhackinglife.blogspot.com, và tính năng chính của nó là "This extension will exports the map from http://maps.dls.gov.jo/dlsweb/index.html to Google Earth as a kmz file".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng map

Tải xuống các tệp mở rộng map dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên map map
ID anmmeejglkafcakbckgleagjpophldeg
URL Chính Thức https://chrome.google.com/webstore/detail/map/anmmeejglkafcakbckgleagjpophldeg
Mô tả This extension will exports the map from http://maps.dls.gov.jo/dlsweb/index.html to Google Earth as a kmz file
Kích Thước Tệp 5.64 KB
Số Lần Cài Đặt 49
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2019-10-04
Ngày Phát Hành 2019-10-04
Nhà Phát Triển http://nightcap79-myhackinglife.blogspot.com
Loại Thanh Toán free
Trang Web Mở Rộng http://maps.dls.gov.jo/dlsweb/index.html
Ngôn Ngữ Được Hỗ Trợ 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"
    ]
}