Google Place ID Display
The Google Place Display conveniently displays the Place IDs of companies.
Co to jest Google Place ID Display?
Google Place ID Display to rozszerzenie Chrome opracowane przez CodeWithDennis, a jego główną funkcją jest „The Google Place Display conveniently displays the Place IDs of companies.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Google Place ID Display
Pobierz pliki rozszerzeń Google Place ID Display 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
The Google Place ID Sidebar add-on is primarily designed for developers to enhance their Google Search experience. It provides the convenience of displaying the Place IDs of companies you search for in the sidebar.
Podstawowe informacje o rozszerzeniu
Nazwa | Google Place ID Display |
ID | lajmnonjjncieddbhlkenkaeidehamao |
Oficjalny URL | https://chromewebstore.google.com/detail/google-place-id-display/lajmnonjjncieddbhlkenkaeidehamao |
Opis | The Google Place Display conveniently displays the Place IDs of companies. |
Rozmiar pliku | 13.61 KB |
Liczba instalacji | 89 |
Aktualna Wersja | 1.0 |
Ostatnia Aktualizacja | 2023-05-21 |
Data Publikacji | 2023-05-21 |
Deweloper | CodeWithDennis |
[email protected] | |
Typ Płatności | free |
Obsługiwane Języki | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Google Place ID Display", "version": "1.0", "description": "The Google Place Display conveniently displays the Place IDs of companies.", "background": { "service_worker": "background.js" }, "permissions": [], "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "128": "icons\/128.png" }, "action": [], "content_scripts": [ { "matches": [ "https:\/\/www.google.nl\/*", "https:\/\/www.google.com\/*" ], "js": [ "content.js" ] } ] } |