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
Cos'è Venia Co. Zoho Contact Importer?
Venia Co. Zoho Contact Importer è un'estensione di Chrome sviluppata da Venia Companies, e la sua funzione principale è "Adds a button to tickets on Zoho Support to import contacts to Zoho CRM, should work on desk.zoho.com as well".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Venia Co. Zoho Contact Importer
Scarica i file di estensione Venia Co. Zoho Contact Importer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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
Informazioni di Base sull'Estensione
Nome | |
ID | dclpakofonokffilmoapajmiagdhmajd |
URL Ufficiale | https://chrome.google.com/webstore/detail/venia-co-zoho-contact-imp/dclpakofonokffilmoapajmiagdhmajd |
Descrizione | Adds a button to tickets on Zoho Support to import contacts to Zoho CRM, should work on desk.zoho.com as well |
Dimensione del File | 8.34 KB |
Conteggio Installazioni | 48 |
Versione Corrente | 1.2 |
Ultimo Aggiornamento | 2023-03-01 |
Data di Pubblicazione | 2017-01-29 |
Sviluppatore | Venia Companies |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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\/*" ] } |