MREID Extractor For GMBs

This extension will attempt to get the MREID of a GMB.

MREID Extractor For GMBs là gì?

MREID Extractor For GMBs là một tiện ích mở rộng Chrome được phát triển bởi iAutoM8, và tính năng chính của nó là "This extension will attempt to get the MREID of a GMB.".

Ả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 MREID Extractor For GMBs

Tải xuống các tệp mở rộng MREID Extractor For GMBs 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 is a tool to try and retrieve the MREID attached to a Google My Business listing.                    

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

Tên MREID Extractor For GMBs MREID Extractor For GMBs
ID ekknkegilfcanmhkplgkfoefdkjmeceb
URL Chính Thức https://chromewebstore.google.com/detail/mreid-extractor-for-gmbs/ekknkegilfcanmhkplgkfoefdkjmeceb
Mô tả This extension will attempt to get the MREID of a GMB.
Kích Thước Tệp 30.31 KB
Số Lần Cài Đặt 1,360
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2020-02-13
Ngày Phát Hành 2020-02-13
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển iAutoM8
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://i-autom8.com
URL Trang Trợ Giúp https://i-autom8.com
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "MREID Extractor For GMBs",
    "version": "1.0.0",
    "manifest_version": 2,
    "description": "This extension will attempt to get the MREID of a GMB.",
    "homepage_url": "https:\/\/i-autom8.com",
    "icons": {
        "16": "icons\/mreid-16.png",
        "48": "icons\/mreid-48.png",
        "128": "icons\/mreid-128.png"
    },
    "default_locale": "en",
    "background": {
        "page": "src\/bg\/background.html",
        "persistent": true
    },
    "page_action": {
        "default_icon": "icons\/mreid-19.png",
        "default_title": "page action demo"
    },
    "permissions": [
        "tabs",
        "activeTab",
        "webRequest",
        "*:\/\/maps.google.com\/*",
        "*:\/\/www.google.com\/maps\/*",
        "*:\/\/google.com\/maps\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/maps.google.com\/*",
                "*:\/\/www.google.com\/maps\/*",
                "*:\/\/google.com\/maps\/*"
            ],
            "js": [
                "src\/inject\/inject.js"
            ],
            "run_at": "document_start"
        }
    ]
}