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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Selects all the directory contacts and adds them to Google Contacts"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Add Google Directory Contacts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}