Softphone Extension

Chromium extension for use with our Softphone application

Qu'est-ce que Softphone Extension ?

Softphone Extension est une extension Chrome développée par https://www.voicehost.co.uk, et sa fonction principale est "Chromium extension for use with our Softphone application".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Softphone Extension

Téléchargez les fichiers d'extension Softphone Extension au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Softphone Extension Softphone Extension
ID aemmefhibajindkcjecigbkpmmjgjlfe
URL Officiel https://chromewebstore.google.com/detail/softphone-extension/aemmefhibajindkcjecigbkpmmjgjlfe
Description Chromium extension for use with our Softphone application
Taille du Fichier 257 KB
Nombre d'Installations 129
Version Actuelle 1.1
Dernière Mise à Jour 2023-06-23
Date de Publication 2023-05-25
Développeur https://www.voicehost.co.uk
Email [email protected]
Type de Paiement free
URL de la Page de Politique de Confidentialité https://voicehost.co.uk/privacy-policy
Langues Prises en Charge 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"
    }
}