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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย 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 ของส่วนขยาย Venia Co. Zoho Contact Importer
ดาวน์โหลดไฟล์ส่วนขยาย 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
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | |
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\/*" ] } |