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
Qu'est-ce que Venia Co. Zoho Contact Importer ?
Venia Co. Zoho Contact Importer est une extension Chrome développée par Venia Companies, et sa fonction principale est "Adds a button to tickets on Zoho Support to import contacts to Zoho CRM, should work on desk.zoho.com as well".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Venia Co. Zoho Contact Importer
Téléchargez les fichiers d'extension Venia Co. Zoho Contact Importer au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | |
ID | dclpakofonokffilmoapajmiagdhmajd |
URL Officiel | https://chrome.google.com/webstore/detail/venia-co-zoho-contact-imp/dclpakofonokffilmoapajmiagdhmajd |
Description | Adds a button to tickets on Zoho Support to import contacts to Zoho CRM, should work on desk.zoho.com as well |
Taille du Fichier | 8.34 KB |
Nombre d'Installations | 48 |
Version Actuelle | 1.2 |
Dernière Mise à Jour | 2023-03-01 |
Date de Publication | 2017-01-29 |
Développeur | Venia Companies |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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\/*" ] } |