Save to

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

Was ist Save to?

Save to ist eine Chrome-Erweiterung, die von https://imagetext.xyz entwickelt wurde, und ihr Hauptmerkmal ist "A chrome extension that lets you directly save contacts in phone from web pages".

Erweiterungsscreenshots

screenshot
screenshot

Save to-Erweiterungs-CRX-Datei herunterladen

Laden Sie Save to-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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                    

Grundlegende Informationen zur Erweiterung

Name Save to Save to
ID ofifhemkgcbeneclidajibkcjllgmjfp
Offizielle URL https://chromewebstore.google.com/detail/save-to/ofifhemkgcbeneclidajibkcjllgmjfp
Beschreibung A chrome extension that lets you directly save contacts in phone from web pages
Dateigröße 763 KB
Installationsanzahl 287
Aktuelle Version 3.0.0
Letztes Update 2022-05-31
Veröffentlichungsdatum 2019-04-25
Bewertung 2.67/5 Insgesamt 3 Bewertungen
Entwickler https://imagetext.xyz
E-Mail [email protected]
Zahlungsart free
Erweiterungswebsite https://saveto.imagetext.xyz/landing
URL der Datenschutzrichtlinien-Seite https://imagetext.xyz/privacy
Unterstützte Sprachen 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"
        }
    ]
}