Softphone Extension

Chromium extension for use with our Softphone application

Co to jest Softphone Extension?

Softphone Extension to rozszerzenie Chrome opracowane przez https://www.voicehost.co.uk, a jego główną funkcją jest „Chromium extension for use with our Softphone application”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Softphone Extension

Pobierz pliki rozszerzeń Softphone Extension w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Softphone Extension Softphone Extension
ID aemmefhibajindkcjecigbkpmmjgjlfe
Oficjalny URL https://chromewebstore.google.com/detail/softphone-extension/aemmefhibajindkcjecigbkpmmjgjlfe
Opis Chromium extension for use with our Softphone application
Rozmiar pliku 257 KB
Liczba instalacji 129
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2023-06-23
Data Publikacji 2023-05-25
Deweloper https://www.voicehost.co.uk
E-mail [email protected]
Typ Płatności free
Adres URL Strony Polityki Prywatności https://voicehost.co.uk/privacy-policy
Obsługiwane Języki 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"
    }
}