Add Google Directory Contacts

Selects all the directory contacts and adds them to Google Contacts

Add Google Directory Contactsคืออะไร?

Add Google Directory Contacts เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Matan H และคุณลักษณะหลักของมันคือ "Selects all the directory contacts and adds them to Google Contacts"

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Add Google Directory Contacts

ดาวน์โหลดไฟล์ส่วนขยาย 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
อีเมล [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"
    }
}