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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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" } ] } |