Save to

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

Vad är Save to?

Save to är en Chrome-tillägg utvecklad av https://imagetext.xyz, och dess huvudfunktion är "A chrome extension that lets you directly save contacts in phone from web pages".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Save to-förlängningens CRX-fil

Ladda ner Save to-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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                    

Grundläggande Information om Tillägg

Namn Save to Save to
ID ofifhemkgcbeneclidajibkcjllgmjfp
Officiell webbadress https://chromewebstore.google.com/detail/save-to/ofifhemkgcbeneclidajibkcjllgmjfp
Beskrivning A chrome extension that lets you directly save contacts in phone from web pages
Filstorlek 763 KB
Antal Installationer 287
Aktuell Version 3.0.0
Senast Uppdaterad 2022-05-31
Publiceringsdatum 2019-04-25
Betyg 2.67/5 Totalt 3 Betyg
Utvecklare https://imagetext.xyz
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://saveto.imagetext.xyz/landing
URL till Sekretesspolicy Sidan https://imagetext.xyz/privacy
Stödda Språk 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"
        }
    ]
}