Eater to Google Maps

A Chrome extension to easily add Eater lists to your Google Maps saved places

Was ist Eater to Google Maps?

Eater to Google Maps ist eine Chrome-Erweiterung, die von cetacean.dev entwickelt wurde, und ihr Hauptmerkmal ist "A Chrome extension to easily add Eater lists to your Google Maps saved places".

Erweiterungsscreenshots

screenshot
screenshot

Eater to Google Maps-Erweiterungs-CRX-Datei herunterladen

Laden Sie Eater to Google Maps-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Eater to Google Maps Eater to Google Maps
ID gpfkccdhgpbmelemkppcbgdgfmnagmkm
Offizielle URL https://chromewebstore.google.com/detail/eater-to-google-maps/gpfkccdhgpbmelemkppcbgdgfmnagmkm
Beschreibung A Chrome extension to easily add Eater lists to your Google Maps saved places
Dateigröße 1.31 MB
Installationsanzahl 29
Aktuelle Version 0.0.4
Letztes Update 2022-11-05
Veröffentlichungsdatum 2022-11-03
Bewertung 1.50/5 Insgesamt 2 Bewertungen
Entwickler cetacean.dev
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen 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"
        }
    ]
}