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.」です。
拡張機能のスクリーンショット
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.                     拡張機能の基本情報
| 名前 |  | 
| 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 | 
| Eメール | [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"
        }
    ]
} | |