Save to

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

O que é Save to?

Save to é uma extensão do Chrome desenvolvida por https://imagetext.xyz, e sua principal característica é "A chrome extension that lets you directly save contacts in phone from web pages".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Save to

Baixe arquivos de extensão Save to no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Save to Save to
ID ofifhemkgcbeneclidajibkcjllgmjfp
URL Oficial https://chromewebstore.google.com/detail/save-to/ofifhemkgcbeneclidajibkcjllgmjfp
Descrição A chrome extension that lets you directly save contacts in phone from web pages
Tamanho do Arquivo 763 KB
Contagem de Instalações 287
Versão Atual 3.0.0
Última Atualização 2022-05-31
Data de Publicação 2019-04-25
Classificação 2.67/5 Total de 3 Avaliações
Desenvolvedor https://imagetext.xyz
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://saveto.imagetext.xyz/landing
URL da Página de Política de Privacidade https://imagetext.xyz/privacy
Idiomas Suportados 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"
        }
    ]
}