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
官方網址 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
電子郵箱 [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\/*"
    ]
}