Softphone Extension

Chromium extension for use with our Softphone application

什么是Softphone Extension?

Softphone Extension是由https://www.voicehost.co.uk开发的Chrome扩展程序,该扩展的主要功能是“Chromium extension for use with our Softphone application”。

扩展截图

screenshot

下载Softphone Extension扩展crx文件

下载Softphone Extension扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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
隐私政策页面URL 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"
    }
}