Softphone Extension

Chromium extension for use with our Softphone application

Softphone Extension là gì?

Softphone Extension là một tiện ích mở rộng Chrome được phát triển bởi https://www.voicehost.co.uk, và tính năng chính của nó là "Chromium extension for use with our Softphone application".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Softphone Extension

Tải xuống các tệp mở rộng Softphone Extension dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Softphone Extension Softphone Extension
ID aemmefhibajindkcjecigbkpmmjgjlfe
URL Chính Thức https://chromewebstore.google.com/detail/softphone-extension/aemmefhibajindkcjecigbkpmmjgjlfe
Mô tả Chromium extension for use with our Softphone application
Kích Thước Tệp 257 KB
Số Lần Cài Đặt 129
Phiên Bản Hiện Tại 1.1
Cập Nhật Lần Cuối 2023-06-23
Ngày Phát Hành 2023-05-25
Nhà Phát Triển https://www.voicehost.co.uk
Email [email protected]
Loại Thanh Toán free
URL Trang Chính Sách Bảo Mật https://voicehost.co.uk/privacy-policy
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}