MREID Extractor For GMBs

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

O que é MREID Extractor For GMBs?

MREID Extractor For GMBs é uma extensão do Chrome desenvolvida por iAutoM8, e sua principal característica é "This extension will attempt to get the MREID of a GMB.".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão MREID Extractor For GMBs

Baixe arquivos de extensão MREID Extractor For GMBs no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

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

Informações Básicas da Extensão

Nome MREID Extractor For GMBs MREID Extractor For GMBs
ID ekknkegilfcanmhkplgkfoefdkjmeceb
URL Oficial https://chromewebstore.google.com/detail/mreid-extractor-for-gmbs/ekknkegilfcanmhkplgkfoefdkjmeceb
Descrição This extension will attempt to get the MREID of a GMB.
Tamanho do Arquivo 30.31 KB
Contagem de Instalações 1,360
Versão Atual 1.0.0
Última Atualização 2020-02-13
Data de Publicação 2020-02-13
Classificação 5.00/5 Total de 1 Avaliações
Desenvolvedor iAutoM8
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://i-autom8.com
URL da Página de Ajuda https://i-autom8.com
Idiomas Suportados 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"
        }
    ]
}