Map Marklet
Bookmarklet for Google Maps
Map Markletคืออะไร?
Map Marklet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย isachenx และคุณลักษณะหลักของมันคือ "Bookmarklet for Google Maps"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Map Marklet
ดาวน์โหลดไฟล์ส่วนขยาย Map Marklet ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Ever find yourself bookmarking hundreds of pages while planning for a holiday, only to realise you have no idea what location on a map these pages refer to? Map Marklet lets you bookmark links to a map. To focus the map: The default is set to Iceland, to focus the map, type the place you want to visit into the autocomplete field and select from the drop down menu. To add a marker: Navigate to the page you want to bookmark. Open the popup and add a marker to the map either via the autocomplete field or directly clicking on the map. To delete a marker: Click on the marker in the popup to delete it.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
ID | ceehjgibajdnifanffaekamboianchbp |
URL อย่างเป็นทางการ | https://chrome.google.com/webstore/detail/map-marklet/ceehjgibajdnifanffaekamboianchbp |
คำอธิบาย | Bookmarklet for Google Maps |
ขนาดไฟล์ | 641 KB |
จำนวนการติดตั้ง | 61 |
เวอร์ชันปัจจุบัน | 0.0.0.1 |
อัปเดตครั้งล่าสุด | 2017-12-05 |
วันที่เผยแพร่ | 2017-12-05 |
คะแนน | 5.00/5 รวมทั้งหมด 3 คะแนน |
ผู้พัฒนา | isachenx |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Map Marklet", "description": "Bookmarklet for Google Maps", "version": "0.0.0.1", "background": { "scripts": [ "event.js" ], "persistent": true }, "browser_action": { "default_icon": { "19": "images\/19.png", "38": "images\/38.png" }, "default_title": "Map Marklet", "default_popup": "popup.html" }, "icons": { "16": "images\/16.png", "48": "images\/48.png", "128": "images\/128.png" }, "content_security_policy": "script-src 'self' https:\/\/maps.googleapis.com https:\/\/connect.facebook.net\/en_US\/all.js; object-src 'self'", "content_scripts": [ { "matches": [ "*:\/\/*\/*" ], "css": [], "js": [ "content.js" ] } ], "web_accessible_resources": [ ".\/main.html" ], "permissions": [ "tabs", "identity", "*:\/\/*.google.com\/*", "storage" ], "oauth2": { "client_id": "658325221633-v2aurmcset7hj6ajq803cv438k7cf5ti.apps.googleusercontent.com", "scopes": [ "profile" ] } } |