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
官方網址 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"
    }
}