ClearVox Nexxt click to call

A extension that detects numbers on webpages and sends them to your clearvox on click

Qu'est-ce que ClearVox Nexxt click to call ?

ClearVox Nexxt click to call est une extension Chrome développée par https://clearvox.nl, et sa fonction principale est "A extension that detects numbers on webpages and sends them to your clearvox on click".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension ClearVox Nexxt click to call

Téléchargez les fichiers d'extension ClearVox Nexxt click to call au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom ClearVox Nexxt click to call ClearVox Nexxt click to call
ID abpidkpcnhcdhahombmgajglihkdgoeh
URL Officiel https://chromewebstore.google.com/detail/clearvox-nexxt-click-to-c/abpidkpcnhcdhahombmgajglihkdgoeh
Description A extension that detects numbers on webpages and sends them to your clearvox on click
Taille du Fichier 247 KB
Nombre d'Installations 941
Version Actuelle 1.13
Dernière Mise à Jour 2020-04-19
Date de Publication 2020-04-16
Évaluation 4.83/5 Total 6 Évaluations
Développeur https://clearvox.nl
Type de Paiement free
Site Web de l'Extension https://clearvox.nl
URL de la Page d'Aide https://documentation.clearvox.nl/display/1/Chrome+CTI-extensie
Langues Prises en Charge 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:\/\/*\/"
    ]
}