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是由https://clearvox.nl开发的Chrome扩展程序,该扩展的主要功能是“A extension that detects numbers on webpages and sends them to your clearvox on click”。

扩展截图

screenshot
screenshot
screenshot

下载ClearVox Nexxt click to call扩展crx文件

下载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 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:\/\/*\/"
    ]
}