Switchvox Screen Sharing for Switchboard

Enables screen-sharing for chrome in the switchboard

Hvad er Switchvox Screen Sharing for Switchboard?

Switchvox Screen Sharing for Switchboard er en Chrome-udvidelse udviklet af Digium, Inc., og dens hovedfunktion er "Enables screen-sharing for chrome in the switchboard".

Udvidelsesskærmbilleder

screenshot

Download Switchvox Screen Sharing for Switchboard-udvidelses-CRX-fil

Download Switchvox Screen Sharing for Switchboard-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

                        This extension is for Switchvox users, and makes it possible to share your desktop computer screen in the Switchboard.                    

Grundlæggende oplysninger om udvidelsen

Navn Switchvox Screen Sharing for Switchboard Switchvox Screen Sharing for Switchboard
ID odnmjffmhmkbebhofkmeeejdbcofiejc
Officiel URL https://chromewebstore.google.com/detail/switchvox-screen-sharing/odnmjffmhmkbebhofkmeeejdbcofiejc
Beskrivelse Enables screen-sharing for chrome in the switchboard
Filstørrelse 4.03 KB
Antal Installationer 884
Nuværende Version 0.0.2
Senest Opdateret 2018-10-24
Udgivelsesdato 2018-10-24
Bedømmelse 1.00/5 Samlet 1 Bedømmelser
Udvikler Digium, Inc.
E-mail [email protected]
Betalingsmetode free
Understøttede Sprog en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Switchvox Screen Sharing for Switchboard",
    "description": "Enables screen-sharing for chrome in the switchboard",
    "version": "0.0.2",
    "content_security_policy": "script-src 'self'; object-src 'self'",
    "permissions": [
        "desktopCapture",
        "https:\/\/*\/*",
        "http:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*\/*",
                "http:\/\/*\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ]
}