MREID Extractor For GMBs
This extension will attempt to get the MREID of a GMB.
Что такое MREID Extractor For GMBs?
MREID Extractor For GMBs - это расширение Chrome, разработанное iAutoM8, и его основная функция - "This extension will attempt to get the MREID of a GMB.".
Снимки экрана расширения
Скачать файл CRX расширения MREID Extractor For GMBs
Скачайте файлы расширений 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 | 
| Электронная почта | [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"
        }
    ]
} | |