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
Eメール [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"
    }
}