Save to

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

Apa itu Save to?

Save to adalah ekstensi Chrome yang dikembangkan oleh https://imagetext.xyz, dan fitur utamanya adalah "A chrome extension that lets you directly save contacts in phone from web pages".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Save to

Unduh file ekstensi Save to dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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                    

Informasi Dasar Ekstensi

Nama Save to Save to
ID ofifhemkgcbeneclidajibkcjllgmjfp
URL Resmi https://chromewebstore.google.com/detail/save-to/ofifhemkgcbeneclidajibkcjllgmjfp
Deskripsi A chrome extension that lets you directly save contacts in phone from web pages
Ukuran File 763 KB
Jumlah Instalasi 287
Versi Saat Ini 3.0.0
Terakhir Diperbarui 2022-05-31
Tanggal Publikasi 2019-04-25
Penilaian 2.67/5 Total 3 Penilaian
Pengembang https://imagetext.xyz
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://saveto.imagetext.xyz/landing
URL Halaman Kebijakan Privasi https://imagetext.xyz/privacy
Bahasa yang Didukung 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"
        }
    ]
}