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文件
下载DYL Click 2 Dial扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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. 扩展基本信息
| 名称 | |
| 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:\/\/*\/*"
]
}
]
} | |