MREID Extractor For GMBs
This extension will attempt to get the MREID of a GMB.
Vad är MREID Extractor For GMBs?
MREID Extractor For GMBs är en Chrome-tillägg utvecklad av iAutoM8, och dess huvudfunktion är "This extension will attempt to get the MREID of a GMB.".
Tilläggsskärmbilder
Ladda ner MREID Extractor For GMBs-förlängningens CRX-fil
Ladda ner MREID Extractor For GMBs-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
                        This extension is a tool to try and retrieve the MREID attached to a Google My Business listing.                     Grundläggande Information om Tillägg
| Namn |  | 
| ID | ekknkegilfcanmhkplgkfoefdkjmeceb | 
| Officiell webbadress | https://chromewebstore.google.com/detail/mreid-extractor-for-gmbs/ekknkegilfcanmhkplgkfoefdkjmeceb | 
| Beskrivning | This extension will attempt to get the MREID of a GMB. | 
| Filstorlek | 30.31 KB | 
| Antal Installationer | 1,360 | 
| Aktuell Version | 1.0.0 | 
| Senast Uppdaterad | 2020-02-13 | 
| Publiceringsdatum | 2020-02-13 | 
| Betyg | 5.00/5 Totalt 1 Betyg | 
| Utvecklare | iAutoM8 | 
| E-post | [email protected] | 
| Betalningssätt | free | 
| Tilläggswebbplats | https://i-autom8.com | 
| Hjälpsida URL | https://i-autom8.com | 
| Stödda Språk | 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"
        }
    ]
} | |