Add Google Directory Contacts

Selects all the directory contacts and adds them to Google Contacts

Add Google Directory Contacts란 무엇입니까?

Add Google Directory Contacts은(는) Matan H에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Selects all the directory contacts and adds them to Google Contacts"입니다.

확장 프로그램 스크린샷

screenshot

Add Google Directory Contacts 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        Selects all the Google directory contacts and adds them to your Google Contacts account                    

확장 프로그램 기본 정보

이름 Add Google Directory Contacts Add Google Directory Contacts
ID ndpbfgcjahbiedcknhknaabgfopkpdef
공식 URL https://chromewebstore.google.com/detail/add-google-directory-cont/ndpbfgcjahbiedcknhknaabgfopkpdef
설명 Selects all the directory contacts and adds them to Google Contacts
파일 크기 56.94 KB
설치 횟수 18
현재 버전 1.0.2
최근 업데이트 2023-07-11
출시 날짜 2022-08-15
개발자 Matan H
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/mharsat/add-google-directory-contacts
도움말 페이지 URL https://github.com/mharsat/add-google-directory-contacts
개인정보 보호 정책 페이지 URL https://www.freeprivacypolicy.com/live/84310801-7d15-4b23-a84b-694fcdb64770
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Add Google Directory Contacts",
    "description": "Selects all the directory contacts and adds them to Google Contacts",
    "version": "1.0.2",
    "manifest_version": 3,
    "background": {
        "service_worker": "hot-reload.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/contacts.google.com\/*directory*"
            ],
            "js": [
                "dist\/contentScript.js"
            ],
            "css": [
                "dist\/contentScript.css"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "16": "assets\/contacts_plus_logo_16.png",
        "32": "assets\/contacts_plus_logo_32.png",
        "48": "assets\/contacts_plus_logo_48.png",
        "128": "assets\/contacts_plus_logo_128.png"
    }
}