ClearVox Nexxt click to call
A extension that detects numbers on webpages and sends them to your clearvox on click
Что такое ClearVox Nexxt click to call?
ClearVox Nexxt click to call - это расширение Chrome, разработанное https://clearvox.nl, и его основная функция - "A extension that detects numbers on webpages and sends them to your clearvox on click".
Снимки экрана расширения
Скачать файл CRX расширения ClearVox Nexxt click to call
Скачайте файлы расширений ClearVox Nexxt click to call в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.
Инструкции по использованию расширения
With this extension you can click on a number on any webpage to quickly call. After installation, use the button in the top to fill in the url of your ClearVox Nexxt and API key. The plugin uses your SSL port to connect safely to the ClearVox.
Основная информация о расширении
Название | ClearVox Nexxt click to call |
ID | abpidkpcnhcdhahombmgajglihkdgoeh |
Официальный URL | https://chromewebstore.google.com/detail/clearvox-nexxt-click-to-c/abpidkpcnhcdhahombmgajglihkdgoeh |
Описание | A extension that detects numbers on webpages and sends them to your clearvox on click |
Размер файла | 247 KB |
Количество установок | 941 |
Текущая Версия | 1.13 |
Последнее Обновление | 2020-04-19 |
Дата публикации | 2020-04-16 |
Рейтинг | 4.83/5 Всего 6 оценок |
Разработчик | https://clearvox.nl |
Тип оплаты | free |
Официальный сайт расширения | https://clearvox.nl |
URL страницы помощи | https://documentation.clearvox.nl/display/1/Chrome+CTI-extensie |
Поддерживаемые языки | en,nl |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "__MSG_application_title__", "description": "__MSG_application_description__", "version": "1.13", "default_locale": "en", "icons": { "16": "icons\/16.png", "32": "icons\/32.png", "48": "icons\/48.png", "128": "icons\/128.png" }, "browser_action": { "default_icon": "icons\/32.png", "default_popup": "popup\/index.html", "default_title": "ClearVox click to call" }, "content_scripts": [ { "run_at": "document_start", "all_frames": true, "matches": [ "https:\/\/*\/*", "http:\/\/*\/*" ], "js": [ "content_scripts\/index.js", "content_scripts\/components\/clearvoxNumber.js", "content_scripts\/components\/clearvoxGrowler.js" ] } ], "background": { "scripts": [ "background.js", "content_scripts\/contextMenu.js" ] }, "permissions": [ "storage", "tabs", "webRequest", "contextMenus", "http:\/\/*\/", "https:\/\/*\/" ] } |