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
官方網址 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"
        }
    ]
}