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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        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
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"
        }
    ]
}