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 هو إضافة Chrome تم تطويرها بواسطة https://clearvox.nl، والميزة الرئيسية لها هي "A extension that detects numbers on webpages and sends them to your clearvox on click".

لقطات شاشة التمديد

screenshot
screenshot
screenshot

تحميل ملف CRX للإضافة ClearVox Nexxt click to call

قم بتنزيل ملفات الامتداد ClearVox Nexxt click to call بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
عنوان صفحة المساعدة 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:\/\/*\/"
    ]
}