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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A Chrome extension to easily add Eater lists to your Google Maps saved places"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Eater to Google Maps एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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 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"
        }
    ]
}