Add Google Directory Contacts
Selects all the directory contacts and adds them to Google Contacts
Что такое Add Google Directory Contacts?
Add Google Directory Contacts - это расширение Chrome, разработанное Matan H, и его основная функция - "Selects all the directory contacts and adds them to Google Contacts".
Снимки экрана расширения
Скачать файл CRX расширения Add Google Directory Contacts
Скачайте файлы расширений Add Google Directory Contacts в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
Selects all the Google directory contacts and adds them to your Google Contacts account Основная информация о расширении
| Название | |
| ID | ndpbfgcjahbiedcknhknaabgfopkpdef |
| Официальный URL | https://chromewebstore.google.com/detail/add-google-directory-cont/ndpbfgcjahbiedcknhknaabgfopkpdef |
| Описание | Selects all the directory contacts and adds them to Google Contacts |
| Размер файла | 56.94 KB |
| Количество установок | 18 |
| Текущая Версия | 1.0.2 |
| Последнее Обновление | 2023-07-11 |
| Дата публикации | 2022-08-15 |
| Разработчик | Matan H |
| Электронная почта | [email protected] |
| Тип оплаты | free |
| Официальный сайт расширения | https://github.com/mharsat/add-google-directory-contacts |
| URL страницы помощи | https://github.com/mharsat/add-google-directory-contacts |
| URL страницы политики конфиденциальности | https://www.freeprivacypolicy.com/live/84310801-7d15-4b23-a84b-694fcdb64770 |
| Поддерживаемые языки | en-US |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"name": "Add Google Directory Contacts",
"description": "Selects all the directory contacts and adds them to Google Contacts",
"version": "1.0.2",
"manifest_version": 3,
"background": {
"service_worker": "hot-reload.js"
},
"content_scripts": [
{
"matches": [
"https:\/\/contacts.google.com\/*directory*"
],
"js": [
"dist\/contentScript.js"
],
"css": [
"dist\/contentScript.css"
],
"run_at": "document_idle"
}
],
"icons": {
"16": "assets\/contacts_plus_logo_16.png",
"32": "assets\/contacts_plus_logo_32.png",
"48": "assets\/contacts_plus_logo_48.png",
"128": "assets\/contacts_plus_logo_128.png"
}
} | |