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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Adds a button to tickets on Zoho Support to import contacts to Zoho CRM, should work on desk.zoho.com as well"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Venia Co. Zoho Contact Importer एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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
एक्सटेंशन की मूल जानकारी
नाम | |
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 |
ईमेल | [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\/*" ] } |