Save to

A chrome extension that lets you directly save contacts in phone from web pages

Cos'è Save to?

Save to è un'estensione di Chrome sviluppata da https://imagetext.xyz, e la sua funzione principale è "A chrome extension that lets you directly save contacts in phone from web pages".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione Save to

Scarica i file di estensione Save to 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

                        A chrome extension that lets you directly save contacts in phone from web pages.
Features:- 
   * Select any which contains email or phone number a plus sign button will appear, click on that button popup will open .
     enter first name and last name click enter. contact will directly synced to your phone. if logged in with same gmail id as logged in on phone.

Troubleshooting:-
https://support.google.com/contacts/answer/2753077

This is a open source project hosted on github here

https://github.com/fxnoob/save-to-google-contact                    

Informazioni di Base sull'Estensione

Nome Save to Save to
ID ofifhemkgcbeneclidajibkcjllgmjfp
URL Ufficiale https://chromewebstore.google.com/detail/save-to/ofifhemkgcbeneclidajibkcjllgmjfp
Descrizione A chrome extension that lets you directly save contacts in phone from web pages
Dimensione del File 763 KB
Conteggio Installazioni 287
Versione Corrente 3.0.0
Ultimo Aggiornamento 2022-05-31
Data di Pubblicazione 2019-04-25
Valutazione 2.67/5 Totale 3 Valutazioni
Sviluppatore https://imagetext.xyz
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://saveto.imagetext.xyz/landing
URL della Pagina della Politica sulla Privacy https://imagetext.xyz/privacy
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Save to",
    "version": "3.0.0",
    "manifest_version": 3,
    "description": "A chrome extension that lets you directly save contacts in phone from web pages",
    "icons": {
        "128": "images\/icon-128.png"
    },
    "background": {
        "service_worker": "background.bundle.js"
    },
    "default_locale": "en",
    "permissions": [
        "activeTab",
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "action": {
        "default_icon": {
            "128": "images\/icon-128.png"
        },
        "default_title": "Save to",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content_script.bundle.js"
            ],
            "run_at": "document_end"
        }
    ]
}