Voicespin

Agent Panel

Vad är Voicespin?

Voicespin är en Chrome-tillägg utvecklad av Voicespin, och dess huvudfunktion är "Agent Panel".

Tilläggsskärmbilder

screenshot
screenshot
screenshot
screenshot

Ladda ner Voicespin-förlängningens CRX-fil

Ladda ner Voicespin-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        The VoiceSpin Chrome extension is part of VoiceSpin’s omnichannel communication platform for contact centers.

The extension is seamlessly integrated with the VoiceSpin’s Agent Panel and allows you to receive inbound calls regardless of which browser tab you are on and make outbound calls directly from your browser by leveraging click-to-call.

To use the extension, you need to be a user of the VoiceSpin contact center and configure the extension according to the provided instructions.                    

Grundläggande Information om Tillägg

Namn Voicespin Voicespin
ID amigkngadiegjleemmdgpfoigjllangi
Officiell webbadress https://chromewebstore.google.com/detail/voicespin/amigkngadiegjleemmdgpfoigjllangi
Beskrivning Agent Panel
Filstorlek 2.18 MB
Antal Installationer 97
Aktuell Version 1.0
Senast Uppdaterad 2023-06-18
Publiceringsdatum 2023-06-18
Betyg 4.50/5 Totalt 2 Betyg
Utvecklare Voicespin
E-post [email protected]
Betalningssätt free
Tilläggswebbplats https://www.voicespin.com/
Stödda Språk en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Voicespin",
    "description": "Agent Panel",
    "version": "1.0",
    "manifest_version": 3,
    "action": {
        "default_icon": {
            "24": "assets\/images\/phone-24.png"
        },
        "default_title": "Voicespin",
        "default_popup": "index.html"
    },
    "background": {
        "service_worker": "background.js",
        "type": "module"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content_script.js"
            ],
            "icons": {
                "16": "assets\/images\/phone-round.png"
            }
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "assets\/images\/phone-round.png"
            ],
            "matches": [
                ""
            ],
            "extension_ids": []
        }
    ],
    "permissions": [
        "storage"
    ]
}