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
官方網址 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:\/\/*\/"
    ]
}