ClearVox Nexxt click to call
A extension that detects numbers on webpages and sends them to your clearvox on click
¿Qué es ClearVox Nexxt click to call?
ClearVox Nexxt click to call es una extensión de Chrome desarrollada por https://clearvox.nl, y su función principal es "A extension that detects numbers on webpages and sends them to your clearvox on click".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión ClearVox Nexxt click to call
Descarga archivos de extensión ClearVox Nexxt click to call en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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.
Información Básica de la Extensión
Nombre | ClearVox Nexxt click to call |
ID | abpidkpcnhcdhahombmgajglihkdgoeh |
URL Oficial | https://chromewebstore.google.com/detail/clearvox-nexxt-click-to-c/abpidkpcnhcdhahombmgajglihkdgoeh |
Descripción | A extension that detects numbers on webpages and sends them to your clearvox on click |
Tamaño del Archivo | 247 KB |
Cantidad de Instalaciones | 941 |
Versión Actual | 1.13 |
Última Actualización | 2020-04-19 |
Fecha de Publicación | 2020-04-16 |
Calificación | 4.83/5 Total de 6 Calificaciones |
Desarrollador | https://clearvox.nl |
Tipo de Pago | free |
Sitio Web de la Extensión | https://clearvox.nl |
URL de la Página de Ayuda | https://documentation.clearvox.nl/display/1/Chrome+CTI-extensie |
Idiomas Soportados | 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:\/\/*\/" ] } |