Save to

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

什么是Save to?

Save to是由https://imagetext.xyz开发的Chrome扩展程序,该扩展的主要功能是“A chrome extension that lets you directly save contacts in phone from web pages”。

扩展截图

screenshot
screenshot

下载Save to扩展crx文件

下载Save to扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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                    

扩展基本信息

名称 Save to Save to
ID ofifhemkgcbeneclidajibkcjllgmjfp
官方URL https://chromewebstore.google.com/detail/save-to/ofifhemkgcbeneclidajibkcjllgmjfp
简介 A chrome extension that lets you directly save contacts in phone from web pages
文件大小 763 KB
安装次数 287
当前版本 3.0.0
更新时间 2022-05-31
上架时间 2019-04-25
评分 2.67/5 共3次评分
开发者 https://imagetext.xyz
电子邮箱 [email protected]
付费类型 free
扩展官网 https://saveto.imagetext.xyz/landing
隐私政策页面URL https://imagetext.xyz/privacy
支持的语言 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"
        }
    ]
}