Add Google Directory Contacts

Selects all the directory contacts and adds them to Google Contacts

Cos'è Add Google Directory Contacts?

Add Google Directory Contacts è un'estensione di Chrome sviluppata da Matan H, e la sua funzione principale è "Selects all the directory contacts and adds them to Google Contacts".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Add Google Directory Contacts

Scarica i file di estensione Add Google Directory Contacts in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        Selects all the Google directory contacts and adds them to your Google Contacts account                    

Informazioni di Base sull'Estensione

Nome Add Google Directory Contacts Add Google Directory Contacts
ID ndpbfgcjahbiedcknhknaabgfopkpdef
URL Ufficiale https://chromewebstore.google.com/detail/add-google-directory-cont/ndpbfgcjahbiedcknhknaabgfopkpdef
Descrizione Selects all the directory contacts and adds them to Google Contacts
Dimensione del File 56.94 KB
Conteggio Installazioni 18
Versione Corrente 1.0.2
Ultimo Aggiornamento 2023-07-11
Data di Pubblicazione 2022-08-15
Sviluppatore Matan H
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/mharsat/add-google-directory-contacts
URL della Pagina di Aiuto https://github.com/mharsat/add-google-directory-contacts
URL della Pagina della Politica sulla Privacy https://www.freeprivacypolicy.com/live/84310801-7d15-4b23-a84b-694fcdb64770
Lingue Supportate 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"
    }
}