Eater to Google Maps

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

Cos'è Eater to Google Maps?

Eater to Google Maps è un'estensione di Chrome sviluppata da cetacean.dev, e la sua funzione principale è "A Chrome extension to easily add Eater lists to your Google Maps saved places".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Eater to Google Maps

Scarica i file di estensione Eater to Google Maps in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Eater to Google Maps Eater to Google Maps
ID gpfkccdhgpbmelemkppcbgdgfmnagmkm
URL Ufficiale https://chromewebstore.google.com/detail/eater-to-google-maps/gpfkccdhgpbmelemkppcbgdgfmnagmkm
Descrizione A Chrome extension to easily add Eater lists to your Google Maps saved places
Dimensione del File 1.31 MB
Conteggio Installazioni 29
Versione Corrente 0.0.4
Ultimo Aggiornamento 2022-11-05
Data di Pubblicazione 2022-11-03
Valutazione 1.50/5 Totale 2 Valutazioni
Sviluppatore cetacean.dev
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
        }
    ]
}