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 กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย 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"
    }
}