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 - это расширение Chrome, разработанное DYL, и его основная функция - "Call or text directly from a weblink when logged into DYL. Works seamlessly with your CRM.".
Снимки экрана расширения
Скачать файл CRX расширения DYL Click 2 Dial
Скачайте файлы расширений 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:\/\/*\/*"
            ]
        }
    ]
} | |