Eater to Google Maps
A Chrome extension to easily add Eater lists to your Google Maps saved places
Eater to Google Mapsคืออะไร?
Eater to Google Maps เป็นส่วนขยายของ Chrome ที่พัฒนาโดย cetacean.dev และคุณลักษณะหลักของมันคือ "A Chrome extension to easily add Eater lists to your Google Maps saved places"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Eater to Google Maps
ดาวน์โหลดไฟล์ส่วนขยาย Eater to Google Maps ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
This extension adds an "Add to Google Maps" button to Eater lists that you can click on which creates a list in Google Maps and adds the list of restaurants to it.
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | Eater to Google Maps |
ID | gpfkccdhgpbmelemkppcbgdgfmnagmkm |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/eater-to-google-maps/gpfkccdhgpbmelemkppcbgdgfmnagmkm |
คำอธิบาย | A Chrome extension to easily add Eater lists to your Google Maps saved places |
ขนาดไฟล์ | 1.31 MB |
จำนวนการติดตั้ง | 29 |
เวอร์ชันปัจจุบัน | 0.0.4 |
อัปเดตครั้งล่าสุด | 2022-11-05 |
วันที่เผยแพร่ | 2022-11-03 |
คะแนน | 1.50/5 รวมทั้งหมด 2 คะแนน |
ผู้พัฒนา | cetacean.dev |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Eater to Google Maps", "description": "A Chrome extension to easily add Eater lists to your Google Maps saved places", "version": "0.0.4", "icons": { "16": "logo\/hamburger-logo-16.png", "48": "logo\/hamburger-logo-48.png", "128": "logo\/hamburger-logo-128.png" }, "options_page": "settings\/settings.html", "action": { "default_title": "Eater to Google Maps", "default_popup": "popup\/popup.html" }, "permissions": [ "storage" ], "host_permissions": [], "background": { "service_worker": "background\/service-worker.js" }, "content_scripts": [ { "css": [ "contentScripts\/parseEaterListData.css" ], "js": [ "contentScripts\/parseEaterListData.js" ], "matches": [ "https:\/\/*.eater.com\/maps\/*" ], "run_at": "document_end" }, { "js": [ "contentScripts\/createMapsList.js" ], "matches": [ "https:\/\/www.google.com\/maps\/*\/data=!4m2!10m1!1e1" ], "run_at": "document_start" }, { "js": [ "contentScripts\/addPlaceToList.js" ], "matches": [ "https:\/\/www.google.com\/maps\/search\/*" ], "run_at": "document_start" } ] } |