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

O que é Venia Co. Zoho Contact Importer?

Venia Co. Zoho Contact Importer é uma extensão do Chrome desenvolvida por Venia Companies, e sua principal característica é "Adds a button to tickets on Zoho Support to import contacts to Zoho CRM, should work on desk.zoho.com as well".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Venia Co. Zoho Contact Importer

Baixe arquivos de extensão Venia Co. Zoho Contact Importer no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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                    

Informações Básicas da Extensão

Nome Venia Co. Zoho Contact Importer Venia Co. Zoho Contact Importer
ID dclpakofonokffilmoapajmiagdhmajd
URL Oficial https://chrome.google.com/webstore/detail/venia-co-zoho-contact-imp/dclpakofonokffilmoapajmiagdhmajd
Descrição Adds a button to tickets on Zoho Support to import contacts to Zoho CRM, should work on desk.zoho.com as well
Tamanho do Arquivo 8.34 KB
Contagem de Instalações 48
Versão Atual 1.2
Última Atualização 2023-03-01
Data de Publicação 2017-01-29
Desenvolvedor Venia Companies
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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\/*"
    ]
}