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