Google Place ID Display
The Google Place Display conveniently displays the Place IDs of companies.
Was ist Google Place ID Display?
Google Place ID Display ist eine Chrome-Erweiterung, die von CodeWithDennis entwickelt wurde, und ihr Hauptmerkmal ist "The Google Place Display conveniently displays the Place IDs of companies.".
Erweiterungsscreenshots
Google Place ID Display-Erweiterungs-CRX-Datei herunterladen
Laden Sie Google Place ID Display-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
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.
Grundlegende Informationen zur Erweiterung
Name | Google Place ID Display |
ID | lajmnonjjncieddbhlkenkaeidehamao |
Offizielle URL | https://chromewebstore.google.com/detail/google-place-id-display/lajmnonjjncieddbhlkenkaeidehamao |
Beschreibung | The Google Place Display conveniently displays the Place IDs of companies. |
Dateigröße | 13.61 KB |
Installationsanzahl | 89 |
Aktuelle Version | 1.0 |
Letztes Update | 2023-05-21 |
Veröffentlichungsdatum | 2023-05-21 |
Entwickler | CodeWithDennis |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } ] } |