Softphone Extension

Chromium extension for use with our Softphone application

ما هو Softphone Extension؟

Softphone Extension هو إضافة Chrome تم تطويرها بواسطة https://www.voicehost.co.uk، والميزة الرئيسية لها هي "Chromium extension for use with our Softphone application".

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

screenshot

تحميل ملف CRX للإضافة Softphone Extension

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

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

                        Our Chrome extension enables click-to-call from any website that contains a telephone number.

Simply click on a phone number and it will be sent into the VoiceHost Softphone desktop app, allowing you to make the call without needing to copy and paste or type the phone number.                    

معلومات أساسية عن التمديد

الاسم Softphone Extension Softphone Extension
ID aemmefhibajindkcjecigbkpmmjgjlfe
عنوان URL الرسمي https://chromewebstore.google.com/detail/softphone-extension/aemmefhibajindkcjecigbkpmmjgjlfe
الوصف Chromium extension for use with our Softphone application
حجم الملف 257 KB
عدد التثبيتات 129
النسخة الحالية 1.1
آخر تحديث 2023-06-23
تاريخ النشر 2023-05-25
المطور https://www.voicehost.co.uk
البريد الإلكتروني [email protected]
نوع الدفع free
عنوان صفحة سياسة الخصوصية https://voicehost.co.uk/privacy-policy
اللغات المدعومة en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Softphone Extension",
    "description": "Chromium extension for use with our Softphone application",
    "version": "1.1",
    "content_scripts": [
        {
            "all_frames": true,
            "js": [
                "helper.js",
                "country_prefix.js",
                "script.js"
            ],
            "matches": [
                ""
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "images\/*"
            ],
            "matches": [
                ""
            ],
            "use_dynamic_url": true
        }
    ],
    "permissions": [
        "storage",
        "tabs"
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "pages\/index\/index.html"
    },
    "options_ui": {
        "open_in_tab": true,
        "page": "pages\/options\/options.html"
    },
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    }
}