Add Google Directory Contacts
Selects all the directory contacts and adds them to Google Contacts
Was ist Add Google Directory Contacts?
Add Google Directory Contacts ist eine Chrome-Erweiterung, die von Matan H entwickelt wurde, und ihr Hauptmerkmal ist "Selects all the directory contacts and adds them to Google Contacts".
Erweiterungsscreenshots
Add Google Directory Contacts-Erweiterungs-CRX-Datei herunterladen
Laden Sie Add Google Directory Contacts-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Selects all the Google directory contacts and adds them to your Google Contacts account
Grundlegende Informationen zur Erweiterung
Name | Add Google Directory Contacts |
ID | ndpbfgcjahbiedcknhknaabgfopkpdef |
Offizielle URL | https://chromewebstore.google.com/detail/add-google-directory-cont/ndpbfgcjahbiedcknhknaabgfopkpdef |
Beschreibung | Selects all the directory contacts and adds them to Google Contacts |
Dateigröße | 56.94 KB |
Installationsanzahl | 18 |
Aktuelle Version | 1.0.2 |
Letztes Update | 2023-07-11 |
Veröffentlichungsdatum | 2022-08-15 |
Entwickler | Matan H |
[email protected] | |
Zahlungsart | free |
Erweiterungswebsite | https://github.com/mharsat/add-google-directory-contacts |
Hilfeseite URL | https://github.com/mharsat/add-google-directory-contacts |
URL der Datenschutzrichtlinien-Seite | https://www.freeprivacypolicy.com/live/84310801-7d15-4b23-a84b-694fcdb64770 |
Unterstützte Sprachen | 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" } } |