Lightspeed Voice Click 2 Call

This extension turns phone numbers into click to call links.

Что такое Lightspeed Voice Click 2 Call?

Lightspeed Voice Click 2 Call - это расширение Chrome, разработанное Lightspeed Voice, и его основная функция - "This extension turns phone numbers into click to call links.".

Снимки экрана расширения

screenshot
screenshot

Скачать файл CRX расширения Lightspeed Voice Click 2 Call

Скачайте файлы расширений Lightspeed Voice Click 2 Call в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This Chrome Extension turns phone numbers into click to call links on most websites. Phone numbers on any website become clickable links that, upon being clicked, automatically dial the phone number on your Lightspeed Voice provided phone. This extension is for Lightspeed Voice customers only. If you do not have Lightspeed Voice telephone service then this extension will not work for you.                    

Основная информация о расширении

Название Lightspeed Voice Click 2 Call Lightspeed Voice Click 2 Call
ID fcpmkcphoadeclpkhlgoebjmmkkamidi
Официальный URL https://chromewebstore.google.com/detail/lightspeed-voice-click-2/fcpmkcphoadeclpkhlgoebjmmkkamidi
Описание This extension turns phone numbers into click to call links.
Размер файла 663 KB
Количество установок 2,625
Текущая Версия 2.7.0.0
Последнее Обновление 2023-11-08
Дата публикации 2020-03-04
Рейтинг 4.75/5 Всего 4 оценок
Разработчик Lightspeed Voice
Электронная почта [email protected]
Тип оплаты free
Официальный сайт расширения https://www.lightspeedvoice.com/
URL страницы помощи https://www.lightspeedvoice.com/
URL страницы политики конфиденциальности https://www.lightspeedvoice.com/privacy-policy
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Lightspeed Voice Click 2 Call",
    "version": "2.7.0.0",
    "description": "This extension turns phone numbers into click to call links.",
    "short_name": "Click 2 Call",
    "permissions": [
        "storage",
        "contextMenus",
        "activeTab",
        "tabs"
    ],
    "icons": {
        "16": "assets\/icons\/icon-16.png",
        "48": "assets\/icons\/icon-48.png",
        "128": "assets\/icons\/icon-128.png"
    },
    "action": {
        "default_icon": "assets\/icons\/icon-48.png",
        "default_popup": "index.html",
        "default_title": "Lightspeed Voice Click 2 Call"
    },
    "background": {
        "service_worker": "background.js"
    },
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "exclude_matches": [
                "*:\/\/*.lightspeedvoice.com\/*"
            ],
            "all_frames": true,
            "css": [
                "c2c2.css"
            ],
            "js": [
                "jquery.js",
                "c2c2.js"
            ]
        }
    ],
    "content_security_policy": {
        "extension_pages": "script-src 'self'; object-src 'self';"
    },
    "manifest_version": 3
}