Add Google Directory Contacts
Selects all the directory contacts and adds them to Google Contacts
Wat is Add Google Directory Contacts?
Add Google Directory Contacts is een Chrome-extensie ontwikkeld door Matan H, en de belangrijkste functie is "Selects all the directory contacts and adds them to Google Contacts".
Extensie Screenshots
Download het CRX-bestand van de extensie Add Google Directory Contacts
Download Add Google Directory Contacts-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
Selects all the Google directory contacts and adds them to your Google Contacts account
Basisinformatie over de Extensie
Naam | Add Google Directory Contacts |
ID | ndpbfgcjahbiedcknhknaabgfopkpdef |
Officiële URL | https://chromewebstore.google.com/detail/add-google-directory-cont/ndpbfgcjahbiedcknhknaabgfopkpdef |
Beschrijving | Selects all the directory contacts and adds them to Google Contacts |
Bestandsgrootte | 56.94 KB |
Aantal Installaties | 18 |
Huidige Versie | 1.0.2 |
Laatst Bijgewerkt | 2023-07-11 |
Publicatiedatum | 2022-08-15 |
Ontwikkelaar | Matan H |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/mharsat/add-google-directory-contacts |
Help Pagina-URL | https://github.com/mharsat/add-google-directory-contacts |
URL van de Privacybeleid Pagina | https://www.freeprivacypolicy.com/live/84310801-7d15-4b23-a84b-694fcdb64770 |
Ondersteunde Talen | 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" } } |