Leads to ZohoCRM - for free
A chrome extension to extract XING and LinkedIn Leads and send them to Zoho
Leads to ZohoCRM - for free란 무엇입니까?
Leads to ZohoCRM - for free은(는) trieb.work | Jannik Z에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A chrome extension to extract XING and LinkedIn Leads and send them to Zoho"입니다.
확장 프로그램 스크린샷
Leads to ZohoCRM - for free 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
This little browser plugin adds an overlay button to all LinkedIn and XING profile pages. When clicking it, the contact details get downloaded and the person gets saved in your Zoho CRM as Lead or Contact - completely for free! Saves you hours of manual copy and paste work! On first start the plugin will ask you to sign-in to ZohoCRM using your account. We don't store any sensitive data and you can remove all access with one click in the ZohoCRM settings. All servers are located in Europe. Please add the custom fields "LinkedIn_ID" and "XING_ID" to Zoho before using this extension.
확장 프로그램 기본 정보
이름 | |
ID | opgjhkjphalmbanenjccphcfhflfcpeh |
공식 URL | https://chrome.google.com/webstore/detail/leads-to-zohocrm-for-free/opgjhkjphalmbanenjccphcfhflfcpeh |
설명 | A chrome extension to extract XING and LinkedIn Leads and send them to Zoho |
파일 크기 | 483 KB |
설치 횟수 | 83 |
현재 버전 | 1.0.8 |
최근 업데이트 | 2021-05-14 |
출시 날짜 | 2020-06-16 |
개발자 | trieb.work | Jannik Z |
이메일 | [email protected] |
결제 유형 | free |
개인정보 보호 정책 페이지 URL | https://trieb.work |
지원되는 언어 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "description": "A chrome extension to extract XING and LinkedIn Leads and send them to Zoho", "version": "1.0.8", "manifest_version": 3, "name": "Leads to ZohoCRM - for free", "options_page": "options.html", "background": { "service_worker": "background.bundle.js" }, "action": { "default_popup": "popup.html", "default_icon": "icon-34.png" }, "permissions": [ "storage", "cookies" ], "host_permissions": [ "https:\/\/linkedin.com\/*", "https:\/\/*.linkedin.com\/*", "https:\/\/xing.com\/*", "https:\/\/*.xing.com\/*" ], "icons": { "128": "icon-128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.linkedin.com\/*", "https:\/\/xing.com\/profile\/*", "https:\/\/*.xing.com\/*" ], "js": [ "contentScript.bundle.js" ], "css": [ "content.styles.css" ] } ], "web_accessible_resources": [ { "resources": [ "content.styles.css", "icon-128.png", "icon-34.png" ], "matches": [] } ] } |