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はcetacean.devによって開発されたChromeの拡張機能で、その主な機能は「A Chrome extension to easily add Eater lists to your Google Maps saved places」です。
拡張機能のスクリーンショット
Eater to Google Maps拡張機能のCRXファイルをダウンロード
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 |
Eメール | [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" } ] } |