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”。

扩展截图

screenshot
screenshot

下载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 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"
        }
    ]
}