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
官方網址 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"
    }
}