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
Eメール [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"
        }
    ]
}