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ファイルをダウンロード

Add Google Directory Contacts拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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
Eメール [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"
    }
}