MREID Extractor For GMBs

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

MREID Extractor For GMBs란 무엇입니까?

MREID Extractor For GMBs은(는) iAutoM8에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "This extension will attempt to get the MREID of a GMB."입니다.

확장 프로그램 스크린샷

screenshot
screenshot

MREID Extractor For GMBs 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
도움말 페이지 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"
        }
    ]
}