Save to

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

Save toคืออะไร?

Save to เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://imagetext.xyz และคุณลักษณะหลักของมันคือ "A chrome extension that lets you directly save contacts in phone from web pages"

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Save to

ดาวน์โหลดไฟล์ส่วนขยาย 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"
        }
    ]
}