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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة سياسة الخصوصية 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"
        }
    ]
}