Venia Co. Zoho Contact Importer

Adds a button to tickets on Zoho Support to import contacts to Zoho CRM, should work on desk.zoho.com as well

Venia Co. Zoho Contact Importerとは何ですか?

Venia Co. Zoho Contact ImporterはVenia Companiesによって開発されたChromeの拡張機能で、その主な機能は「Adds a button to tickets on Zoho Support to import contacts to Zoho CRM, should work on desk.zoho.com as well」です。

拡張機能のスクリーンショット

screenshot

Venia Co. Zoho Contact Importer拡張機能のCRXファイルをダウンロード

Venia Co. Zoho Contact Importer拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        Makes it more convenient for people who use both Zoho Support and Zoho CRM to keep their contacts synchronized.  If a contact in Zoho Support doesn't exist in Zoho CRM, a button is added to the CRM Info section allowing you to automatically add the contact to Zoho CRM.  Attempts to guess at the contact's phone, fax, website and address based on email content.

Icon built with graphics from https://icons8.com                    

拡張機能の基本情報

名前 Venia Co. Zoho Contact Importer Venia Co. Zoho Contact Importer
ID dclpakofonokffilmoapajmiagdhmajd
公式URL https://chrome.google.com/webstore/detail/venia-co-zoho-contact-imp/dclpakofonokffilmoapajmiagdhmajd
説明 Adds a button to tickets on Zoho Support to import contacts to Zoho CRM, should work on desk.zoho.com as well
ファイルサイズ 8.34 KB
インストール数 48
現在のバージョン 1.2
最終更新日 2023-03-01
公開日 2017-01-29
開発者 Venia Companies
Eメール [email protected]
支払い方法 free
対応言語 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Venia Co. Zoho Contact Importer",
    "description": "Adds a button to tickets on Zoho Support to import contacts to Zoho CRM, should work on desk.zoho.com as well",
    "version": "1.2",
    "icons": {
        "128": "Venia-Zoho-Icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/support.zoho.com\/*",
                "https:\/\/desk.zoho.com\/*"
            ],
            "css": [
                "content.css"
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_idle"
        },
        {
            "matches": [
                "https:\/\/crm.zoho.com\/*"
            ],
            "js": [
                "crm.js"
            ]
        }
    ],
    "background": {
        "serviceworker": "eventPage.js"
    },
    "permissions": [
        "tabs",
        "webNavigation"
    ],
    "host_permissions": [
        "https:\/\/support.zoho.com\/*"
    ]
}