Add Google Directory Contacts
Selects all the directory contacts and adds them to Google Contacts
Co to jest Add Google Directory Contacts?
Add Google Directory Contacts to rozszerzenie Chrome opracowane przez Matan H, a jego główną funkcją jest „Selects all the directory contacts and adds them to Google Contacts”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Add Google Directory Contacts
Pobierz pliki rozszerzeń Add Google Directory Contacts w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
Selects all the Google directory contacts and adds them to your Google Contacts account
Podstawowe informacje o rozszerzeniu
Nazwa | Add Google Directory Contacts |
ID | ndpbfgcjahbiedcknhknaabgfopkpdef |
Oficjalny URL | https://chromewebstore.google.com/detail/add-google-directory-cont/ndpbfgcjahbiedcknhknaabgfopkpdef |
Opis | Selects all the directory contacts and adds them to Google Contacts |
Rozmiar pliku | 56.94 KB |
Liczba instalacji | 18 |
Aktualna Wersja | 1.0.2 |
Ostatnia Aktualizacja | 2023-07-11 |
Data Publikacji | 2022-08-15 |
Deweloper | Matan H |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/mharsat/add-google-directory-contacts |
Adres URL Strony Pomocy | https://github.com/mharsat/add-google-directory-contacts |
Adres URL Strony Polityki Prywatności | https://www.freeprivacypolicy.com/live/84310801-7d15-4b23-a84b-694fcdb64770 |
Obsługiwane Języki | 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" } } |