Save to

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

Save to là gì?

Save to là một tiện ích mở rộng Chrome được phát triển bởi https://imagetext.xyz, và tính năng chính của nó là "A chrome extension that lets you directly save contacts in phone from web pages".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Save to

Tải xuống các tệp mở rộng Save to dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Save to Save to
ID ofifhemkgcbeneclidajibkcjllgmjfp
URL Chính Thức https://chromewebstore.google.com/detail/save-to/ofifhemkgcbeneclidajibkcjllgmjfp
Mô tả A chrome extension that lets you directly save contacts in phone from web pages
Kích Thước Tệp 763 KB
Số Lần Cài Đặt 287
Phiên Bản Hiện Tại 3.0.0
Cập Nhật Lần Cuối 2022-05-31
Ngày Phát Hành 2019-04-25
Đánh Giá 2.67/5 Tổng số 3 Đánh Giá
Nhà Phát Triển https://imagetext.xyz
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://saveto.imagetext.xyz/landing
URL Trang Chính Sách Bảo Mật https://imagetext.xyz/privacy
Ngôn Ngữ Được Hỗ Trợ 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"
        }
    ]
}