DYL Click 2 Dial
Call or text directly from a weblink when logged into DYL. Works seamlessly with your CRM.
DYL Click 2 Dial란 무엇입니까?
DYL Click 2 Dial은(는) DYL에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Call or text directly from a weblink when logged into DYL. Works seamlessly with your CRM."입니다.
확장 프로그램 스크린샷
DYL Click 2 Dial 확장 프로그램 CRX 파일 다운로드
크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.
확장 프로그램 사용 설명서
Wish you could call prospects from your CRM with just one click? You can! “Click 2 Dial” enables you to search on the web and click on any number with a DYL Icon to dial that number immediately. Send text messages or make calls. Also pops up an extension window for easy texting and dialing.
확장 프로그램 기본 정보
이름 | DYL Click 2 Dial |
ID | fjgflnncpmgggnjhbldinmghmhjbgfal |
공식 URL | https://chromewebstore.google.com/detail/dyl-click-2-dial/fjgflnncpmgggnjhbldinmghmhjbgfal |
설명 | Call or text directly from a weblink when logged into DYL. Works seamlessly with your CRM. |
파일 크기 | 53.46 KB |
설치 횟수 | 325 |
현재 버전 | 0.3 |
최근 업데이트 | 2020-10-27 |
출시 날짜 | 2020-10-27 |
개발자 | DYL |
이메일 | [email protected] |
결제 유형 | free |
확장 프로그램 웹 사이트 | https://www.dyl.com |
도움말 페이지 URL | https://www.dyl.com/support |
개인정보 보호 정책 페이지 URL | https://dyl.com/privacy-policy |
지원되는 언어 | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "DYL Click 2 Dial", "manifest_version": 2, "version": "0.3", "description": "Call or text directly from a weblink when logged into DYL. Works seamlessly with your CRM.", "browser_action": { "default_icon": "alert.icon.png", "default_title": "Quick Call", "default_popup": "popup.html" }, "permissions": [ "activeTab", "cookies", "https:\/\/my.dyl.com\/" ], "web_accessible_resources": [ "alert.icon.png" ], "background": { "scripts": [ "jquery.js", "popup.js" ], "persistent": false }, "content_scripts": [ { "css": [ "c2d.css" ], "js": [ "jquery.js", "c2d.js" ], "matches": [ "http:\/\/*\/*", "https:\/\/*\/*" ] } ] } |