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.".

لقطات شاشة التمديد

screenshot
screenshot

تحميل ملف CRX للإضافة MREID Extractor For GMBs

قم بتنزيل ملفات الامتداد MREID Extractor For GMBs بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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"
        }
    ]
}