MREID Extractor For GMBs
This extension will attempt to get the MREID of a GMB.
Was ist MREID Extractor For GMBs?
MREID Extractor For GMBs ist eine Chrome-Erweiterung, die von iAutoM8 entwickelt wurde, und ihr Hauptmerkmal ist "This extension will attempt to get the MREID of a GMB.".
Erweiterungsscreenshots
MREID Extractor For GMBs-Erweiterungs-CRX-Datei herunterladen
Laden Sie MREID Extractor For GMBs-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
                        This extension is a tool to try and retrieve the MREID attached to a Google My Business listing.                     Grundlegende Informationen zur Erweiterung
| Name |  | 
| ID | ekknkegilfcanmhkplgkfoefdkjmeceb | 
| Offizielle URL | https://chromewebstore.google.com/detail/mreid-extractor-for-gmbs/ekknkegilfcanmhkplgkfoefdkjmeceb | 
| Beschreibung | This extension will attempt to get the MREID of a GMB. | 
| Dateigröße | 30.31 KB | 
| Installationsanzahl | 1,360 | 
| Aktuelle Version | 1.0.0 | 
| Letztes Update | 2020-02-13 | 
| Veröffentlichungsdatum | 2020-02-13 | 
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen | 
| Entwickler | iAutoM8 | 
| [email protected] | |
| Zahlungsart | free | 
| Erweiterungswebsite | https://i-autom8.com | 
| Hilfeseite URL | https://i-autom8.com | 
| Unterstützte Sprachen | 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"
        }
    ]
} | |