ClearVox Nexxt click to call

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

Wat is ClearVox Nexxt click to call?

ClearVox Nexxt click to call is een Chrome-extensie ontwikkeld door https://clearvox.nl, en de belangrijkste functie is "A extension that detects numbers on webpages and sends them to your clearvox on click".

Extensie Screenshots

screenshot
screenshot
screenshot

Download het CRX-bestand van de extensie ClearVox Nexxt click to call

Download ClearVox Nexxt click to call-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.

Instructies voor het Gebruik van de Extensie

                        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.                    

Basisinformatie over de Extensie

Naam ClearVox Nexxt click to call ClearVox Nexxt click to call
ID abpidkpcnhcdhahombmgajglihkdgoeh
Officiële URL https://chromewebstore.google.com/detail/clearvox-nexxt-click-to-c/abpidkpcnhcdhahombmgajglihkdgoeh
Beschrijving A extension that detects numbers on webpages and sends them to your clearvox on click
Bestandsgrootte 247 KB
Aantal Installaties 941
Huidige Versie 1.13
Laatst Bijgewerkt 2020-04-19
Publicatiedatum 2020-04-16
Beoordeling 4.83/5 Totaal 6 Beoordelingen
Ontwikkelaar https://clearvox.nl
Betalingswijze free
Extensiewebsite https://clearvox.nl
Help Pagina-URL https://documentation.clearvox.nl/display/1/Chrome+CTI-extensie
Ondersteunde Talen 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:\/\/*\/"
    ]
}