MREID Extractor For GMBs

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

Co je MREID Extractor For GMBs?

MREID Extractor For GMBs je rozšíření Chrome vyvinuté iAutoM8, a jeho hlavní funkcí je „This extension will attempt to get the MREID of a GMB.“.

Snímky obrazovky rozšíření

screenshot
screenshot

Stáhnout soubor CRX rozšíření MREID Extractor For GMBs

Stáhněte si soubory rozšíření MREID Extractor For GMBs ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

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

Základní Informace o Rozšíření

Název MREID Extractor For GMBs MREID Extractor For GMBs
ID ekknkegilfcanmhkplgkfoefdkjmeceb
Oficiální URL https://chromewebstore.google.com/detail/mreid-extractor-for-gmbs/ekknkegilfcanmhkplgkfoefdkjmeceb
Popis This extension will attempt to get the MREID of a GMB.
Velikost souboru 30.31 KB
Počet instalací 1,360
Aktuální Verze 1.0.0
Poslední Aktualizace 2020-02-13
Datum Vydání 2020-02-13
Hodnocení 5.00/5 Celkem 1 Hodnocení
Vývojář iAutoM8
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://i-autom8.com
URL Stránky Nápovědy https://i-autom8.com
Podporované Jazyky 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"
        }
    ]
}