Eater to Google Maps

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

Eater to Google Maps là gì?

Eater to Google Maps là một tiện ích mở rộng Chrome được phát triển bởi cetacean.dev, và tính năng chính của nó là "A Chrome extension to easily add Eater lists to your Google Maps saved places".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Eater to Google Maps

Tải xuống các tệp mở rộng Eater to Google Maps dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Eater to Google Maps Eater to Google Maps
ID gpfkccdhgpbmelemkppcbgdgfmnagmkm
URL Chính Thức https://chromewebstore.google.com/detail/eater-to-google-maps/gpfkccdhgpbmelemkppcbgdgfmnagmkm
Mô tả A Chrome extension to easily add Eater lists to your Google Maps saved places
Kích Thước Tệp 1.31 MB
Số Lần Cài Đặt 29
Phiên Bản Hiện Tại 0.0.4
Cập Nhật Lần Cuối 2022-11-05
Ngày Phát Hành 2022-11-03
Đánh Giá 1.50/5 Tổng số 2 Đánh Giá
Nhà Phát Triển cetacean.dev
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}