Wise Agent Add Contacts

Add contacts to Wise Agent from Gmail

Wise Agent Add Contacts क्या है?

Wise Agent Add Contacts https://www.wiseagent.com द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Add contacts to Wise Agent from Gmail"।

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

screenshot

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

crx प्रारूप में Wise Agent Add Contacts एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Wise Agent CRM members will be able to add contacts from their Gmail account directly to their Wise Agent account. The extension will automatically extract the name and email address of the email sender and any recipients. Additionally, users can add extra details such as phone numbers, titles, company names, sources, and categories to the contacts.                    

एक्सटेंशन की मूल जानकारी

नाम Wise Agent Add Contacts Wise Agent Add Contacts
ID elpiekaehikfeikdafacpofkjenfipke
आधिकारिक URL https://chromewebstore.google.com/detail/wise-agent-add-contacts/elpiekaehikfeikdafacpofkjenfipke
विवरण Add contacts to Wise Agent from Gmail
फ़ाइल का आकार 827 KB
स्थापना संख्या 1,821
वर्तमान संस्करण 4.0
अंतिम अपडेट 2024-02-01
प्रकाशन तिथि 2020-04-27
रेटिंग 5.00/5 कुल 5 रेटिंग्स
डेवलपर https://www.wiseagent.com
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://www.wiseagent.com
सहायता पृष्ठ URL https://www.wiseagent.com/contact-us.asp
गोपनीयता नीति पृष्ठ URL https://www.thewiseagent.com/privacy.asp
समर्थित भाषाएँ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Wise Agent Add Contacts",
    "short_name": "wiseagentaddcontacts",
    "version": "4.0",
    "author": "Wise Agent LLC",
    "description": "Add contacts to Wise Agent from Gmail",
    "icons": {
        "16": "WA_Logo-16x16.png",
        "48": "WA_Logo-48x48.png",
        "128": "WA_Logo-128x128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/mail.google.com\/*"
            ],
            "js": [
                "dist\/extensionInjector.js"
            ],
            "run_at": "document_start",
            "css": [
                "css\/extension.css"
            ]
        }
    ],
    "permissions": [
        "storage",
        "https:\/\/mail.google.com\/*"
    ],
    "background": {
        "service_worker": "dist\/background.js"
    },
    "externally_connectable": {
        "ids": [
            "elpiekaehikfeikdafacpofkjenfipke"
        ],
        "matches": [
            "https:\/\/mail.google.com\/*"
        ],
        "accepts_tls_channel_id": false
    },
    "web_accessible_resources": [
        {
            "resources": [
                "dist\/gmailJsLoader.js",
                "dist\/extension.js",
                "dist\/gmailJsLoader.js.map",
                "dist\/extension.js.map",
                "dist\/angular.js",
                "dist\/angular.js.map",
                "dist\/ui.bootstrap.js",
                "dist\/ui.bootstrap.js.map",
                "dist\/select.js",
                "dist\/select.js.map",
                "dist\/extension.css",
                "\/MenuLogo-blue.svg"
            ],
            "matches": [
                "*:\/\/mail.google.com\/*"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/*\/*"
    ]
}