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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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
개인정보 보호 정책 페이지 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"
        }
    ]
}