Google Place ID Display
The Google Place Display conveniently displays the Place IDs of companies.
Vad är Google Place ID Display?
Google Place ID Display är en Chrome-tillägg utvecklad av CodeWithDennis, och dess huvudfunktion är "The Google Place Display conveniently displays the Place IDs of companies.".
Tilläggsskärmbilder
Ladda ner Google Place ID Display-förlängningens CRX-fil
Ladda ner Google Place ID Display-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
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.
Grundläggande Information om Tillägg
Namn | Google Place ID Display |
ID | lajmnonjjncieddbhlkenkaeidehamao |
Officiell webbadress | https://chromewebstore.google.com/detail/google-place-id-display/lajmnonjjncieddbhlkenkaeidehamao |
Beskrivning | The Google Place Display conveniently displays the Place IDs of companies. |
Filstorlek | 13.61 KB |
Antal Installationer | 89 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2023-05-21 |
Publiceringsdatum | 2023-05-21 |
Utvecklare | CodeWithDennis |
E-post | [email protected] |
Betalningssätt | free |
Stödda Språk | 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" ] } ] } |