MREID Extractor For GMBs
This extension will attempt to get the MREID of a GMB.
Co to jest MREID Extractor For GMBs?
MREID Extractor For GMBs to rozszerzenie Chrome opracowane przez iAutoM8, a jego główną funkcją jest „This extension will attempt to get the MREID of a GMB.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia MREID Extractor For GMBs
Pobierz pliki rozszerzeń MREID Extractor For GMBs w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
This extension is a tool to try and retrieve the MREID attached to a Google My Business listing.
Podstawowe informacje o rozszerzeniu
Nazwa | MREID Extractor For GMBs |
ID | ekknkegilfcanmhkplgkfoefdkjmeceb |
Oficjalny URL | https://chromewebstore.google.com/detail/mreid-extractor-for-gmbs/ekknkegilfcanmhkplgkfoefdkjmeceb |
Opis | This extension will attempt to get the MREID of a GMB. |
Rozmiar pliku | 30.31 KB |
Liczba instalacji | 1,360 |
Aktualna Wersja | 1.0.0 |
Ostatnia Aktualizacja | 2020-02-13 |
Data Publikacji | 2020-02-13 |
Ocena | 5.00/5 Łącznie 1 Oceny |
Deweloper | iAutoM8 |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://i-autom8.com |
Adres URL Strony Pomocy | https://i-autom8.com |
Obsługiwane Języki | 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" } ] } |