ClearVox Nexxt click to call

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

Was ist ClearVox Nexxt click to call?

ClearVox Nexxt click to call ist eine Chrome-Erweiterung, die von https://clearvox.nl entwickelt wurde, und ihr Hauptmerkmal ist "A extension that detects numbers on webpages and sends them to your clearvox on click".

Erweiterungsscreenshots

screenshot
screenshot
screenshot

ClearVox Nexxt click to call-Erweiterungs-CRX-Datei herunterladen

Laden Sie ClearVox Nexxt click to call-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name ClearVox Nexxt click to call ClearVox Nexxt click to call
ID abpidkpcnhcdhahombmgajglihkdgoeh
Offizielle URL https://chromewebstore.google.com/detail/clearvox-nexxt-click-to-c/abpidkpcnhcdhahombmgajglihkdgoeh
Beschreibung A extension that detects numbers on webpages and sends them to your clearvox on click
Dateigröße 247 KB
Installationsanzahl 941
Aktuelle Version 1.13
Letztes Update 2020-04-19
Veröffentlichungsdatum 2020-04-16
Bewertung 4.83/5 Insgesamt 6 Bewertungen
Entwickler https://clearvox.nl
Zahlungsart free
Erweiterungswebsite https://clearvox.nl
Hilfeseite URL https://documentation.clearvox.nl/display/1/Chrome+CTI-extensie
Unterstützte Sprachen 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:\/\/*\/"
    ]
}