Google Place ID Display
The Google Place Display conveniently displays the Place IDs of companies.
What is Google Place ID Display?
Google Place ID Display is a Chrome extension developed by CodeWithDennis, and its main feature is "The Google Place Display conveniently displays the Place IDs of companies.".
Extension Screenshots
Download Google Place ID Display Extension CRX File
Download Google Place ID Display extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Google Place ID Display |
ID | lajmnonjjncieddbhlkenkaeidehamao |
Official URL | https://chromewebstore.google.com/detail/google-place-id-display/lajmnonjjncieddbhlkenkaeidehamao |
Description | The Google Place Display conveniently displays the Place IDs of companies. |
File Size | 13.61 KB |
Installation Count | 89 |
Current Version | 1.0 |
Last Updated | 2023-05-21 |
Publish Date | 2023-05-21 |
Developer | CodeWithDennis |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } ] } |