MapSwitcher
Adds buttons to various map services for opening the same location in different map services.
MapSwitcherคืออะไร?
MapSwitcher เป็นส่วนขยายของ Chrome ที่พัฒนาโดย František Nesveda และคุณลักษณะหลักของมันคือ "Adds buttons to various map services for opening the same location in different map services."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย MapSwitcher
ดาวน์โหลดไฟล์ส่วนขยาย MapSwitcher ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
MapSwitcher is a small extension which adds buttons to various map services for opening the displayed location in a different service. Currently supported is switching between Google Maps, Mapy.cz and Geoportal.gov.cz. Homepage: https://www.nesveda.com/projects/MapSwitcher/ Source code: https://www.github.com/fnesveda/MapSwitcher/
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | MapSwitcher |
ID | eogccmggebhlkjdjhlgddmnkffjfjamo |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/mapswitcher/eogccmggebhlkjdjhlgddmnkffjfjamo |
คำอธิบาย | Adds buttons to various map services for opening the same location in different map services. |
ขนาดไฟล์ | 69.74 KB |
จำนวนการติดตั้ง | 59 |
เวอร์ชันปัจจุบัน | 1.0.1 |
อัปเดตครั้งล่าสุด | 2019-11-08 |
วันที่เผยแพร่ | 2019-11-08 |
คะแนน | 4.67/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | František Nesveda |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://www.nesveda.com/projects/MapSwitcher/ |
ภาษาที่รองรับ | en,cs |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_extension_name__", "description": "__MSG_extension_description__", "default_locale": "en", "version": "1.0.1", "applications": { "gecko": { "id": "{0516BC41-6FA3-4326-87FE-7EA9101412FE}" } }, "icons": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "96": "icons\/icon-96.png", "128": "icons\/icon-128.png", "256": "icons\/icon-256.png", "480": "icons\/icon-full.png" }, "default_icon": { "16": "icons\/icon-16.png", "32": "icons\/icon-32.png", "48": "icons\/icon-48.png", "96": "icons\/icon-96.png", "128": "icons\/icon-128.png", "256": "icons\/icon-256.png", "480": "icons\/icon-full.png" }, "permissions": [ "https:\/\/geoportal.gov.cz\/", "storage" ], "content_scripts": [ { "matches": [ "*:\/\/*.google.com\/maps*", "*:\/\/*.google.cz\/maps*" ], "js": [ "scripts\/js\/main.js", "scripts\/js\/options.js", "scripts\/js\/urls\/googlemaps.js", "scripts\/js\/urls\/mapycz.js", "scripts\/js\/buttons\/googlemaps.js" ], "css": [ "styles\/common.css", "styles\/googlemaps.css" ] }, { "matches": [ "*:\/\/*.mapy.cz\/*" ], "js": [ "scripts\/js\/main.js", "scripts\/js\/options.js", "scripts\/js\/urls\/googlemaps.js", "scripts\/js\/urls\/mapycz.js", "scripts\/js\/buttons\/mapycz.js" ], "css": [ "styles\/common.css", "styles\/mapycz.css" ] } ], "background": { "scripts": [ "scripts\/js\/background\/background.js", "scripts\/js\/options.js", "scripts\/js\/urls\/geoportal.js" ], "persistent": false }, "options_ui": { "page": "pages\/options.html", "chrome_style": true } } |