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"
        }
    ]
}