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 مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة https://github.com/mharsat/add-google-directory-contacts
عنوان صفحة سياسة الخصوصية 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"
    }
}