MREID Extractor For GMBs

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

什么是MREID Extractor For GMBs?

MREID Extractor For GMBs是由iAutoM8开发的Chrome扩展程序,该扩展的主要功能是“This extension will attempt to get the MREID of a GMB.”。

扩展截图

screenshot
screenshot

下载MREID Extractor For GMBs扩展crx文件

下载MREID Extractor For GMBs扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This extension is a tool to try and retrieve the MREID attached to a Google My Business listing.                    

扩展基本信息

名称 MREID Extractor For GMBs MREID Extractor For GMBs
ID ekknkegilfcanmhkplgkfoefdkjmeceb
官方URL https://chromewebstore.google.com/detail/mreid-extractor-for-gmbs/ekknkegilfcanmhkplgkfoefdkjmeceb
简介 This extension will attempt to get the MREID of a GMB.
文件大小 30.31 KB
安装次数 1,360
当前版本 1.0.0
更新时间 2020-02-13
上架时间 2020-02-13
评分 5.00/5 共1次评分
开发者 iAutoM8
电子邮箱 [email protected]
付费类型 free
扩展官网 https://i-autom8.com
帮助页面URL https://i-autom8.com
支持的语言 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"
        }
    ]
}