Save to

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

What is Save to?

Save to is a Chrome extension developed by https://imagetext.xyz, and its main feature is "A chrome extension that lets you directly save contacts in phone from web pages".

Extension Screenshots

screenshot
screenshot

Download Save to Extension CRX File

Download Save to extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Save to Save to
ID ofifhemkgcbeneclidajibkcjllgmjfp
Official URL https://chromewebstore.google.com/detail/save-to/ofifhemkgcbeneclidajibkcjllgmjfp
Description A chrome extension that lets you directly save contacts in phone from web pages
File Size 763 KB
Installation Count 287
Current Version 3.0.0
Last Updated 2022-05-31
Publish Date 2019-04-25
Rating 2.67/5 Total 3 Ratings
Developer https://imagetext.xyz
Email [email protected]
Payment Type free
Extension Website https://saveto.imagetext.xyz/landing
Privacy Policy Page URL https://imagetext.xyz/privacy
Supported Languages 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"
        }
    ]
}