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에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "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 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 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\/*" ] } |