Google Place ID Display
The Google Place Display conveniently displays the Place IDs of companies.
Что такое Google Place ID Display?
Google Place ID Display - это расширение Chrome, разработанное CodeWithDennis, и его основная функция - "The Google Place Display conveniently displays the Place IDs of companies.".
Снимки экрана расширения
Скачать файл CRX расширения Google Place ID Display
Скачайте файлы расширений Google Place ID Display в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
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. Основная информация о расширении
| Название | |
| ID | lajmnonjjncieddbhlkenkaeidehamao |
| Официальный URL | https://chromewebstore.google.com/detail/google-place-id-display/lajmnonjjncieddbhlkenkaeidehamao |
| Описание | The Google Place Display conveniently displays the Place IDs of companies. |
| Размер файла | 13.61 KB |
| Количество установок | 89 |
| Текущая Версия | 1.0 |
| Последнее Обновление | 2023-05-21 |
| Дата публикации | 2023-05-21 |
| Разработчик | CodeWithDennis |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Поддерживаемые языки | 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"
]
}
]
} | |