Softphone Extension

Chromium extension for use with our Softphone application

Cos'è Softphone Extension?

Softphone Extension è un'estensione di Chrome sviluppata da https://www.voicehost.co.uk, e la sua funzione principale è "Chromium extension for use with our Softphone application".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Softphone Extension

Scarica i file di estensione Softphone Extension in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Softphone Extension Softphone Extension
ID aemmefhibajindkcjecigbkpmmjgjlfe
URL Ufficiale https://chromewebstore.google.com/detail/softphone-extension/aemmefhibajindkcjecigbkpmmjgjlfe
Descrizione Chromium extension for use with our Softphone application
Dimensione del File 257 KB
Conteggio Installazioni 129
Versione Corrente 1.1
Ultimo Aggiornamento 2023-06-23
Data di Pubblicazione 2023-05-25
Sviluppatore https://www.voicehost.co.uk
Email [email protected]
Tipo di Pagamento free
URL della Pagina della Politica sulla Privacy https://voicehost.co.uk/privacy-policy
Lingue Supportate 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"
    }
}