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是由http://nightcap79-myhackinglife.blogspot.com开发的Chrome扩展程序,该扩展的主要功能是“This extension will exports the map from http://maps.dls.gov.jo/dlsweb/index.html to Google Earth as a kmz file”。
扩展截图
下载map扩展crx文件
下载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
扩展基本信息
名称 | |
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" ] } |