Softphone Extension

Chromium extension for use with our Softphone application

Hvad er Softphone Extension?

Softphone Extension er en Chrome-udvidelse udviklet af https://www.voicehost.co.uk, og dens hovedfunktion er "Chromium extension for use with our Softphone application".

Udvidelsesskærmbilleder

screenshot

Download Softphone Extension-udvidelses-CRX-fil

Download Softphone Extension-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.

Brugsanvisning til Udvidelsen

                        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.                    

Grundlæggende oplysninger om udvidelsen

Navn Softphone Extension Softphone Extension
ID aemmefhibajindkcjecigbkpmmjgjlfe
Officiel URL https://chromewebstore.google.com/detail/softphone-extension/aemmefhibajindkcjecigbkpmmjgjlfe
Beskrivelse Chromium extension for use with our Softphone application
Filstørrelse 257 KB
Antal Installationer 129
Nuværende Version 1.1
Senest Opdateret 2023-06-23
Udgivelsesdato 2023-05-25
Udvikler https://www.voicehost.co.uk
E-mail [email protected]
Betalingsmetode free
URL til Fortrolighedspolitik Side https://voicehost.co.uk/privacy-policy
Understøttede Sprog 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"
    }
}