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".
لقطات شاشة التمديد
تحميل ملف CRX للإضافة map
قم بتنزيل ملفات الامتداد map بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" ] } |