Switchvox Screen Sharing for Switchboard

Enables screen-sharing for chrome in the switchboard

Vad är Switchvox Screen Sharing for Switchboard?

Switchvox Screen Sharing for Switchboard är en Chrome-tillägg utvecklad av Digium, Inc., och dess huvudfunktion är "Enables screen-sharing for chrome in the switchboard".

Tilläggsskärmbilder

screenshot

Ladda ner Switchvox Screen Sharing for Switchboard-förlängningens CRX-fil

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

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

Grundläggande Information om Tillägg

Namn Switchvox Screen Sharing for Switchboard Switchvox Screen Sharing for Switchboard
ID odnmjffmhmkbebhofkmeeejdbcofiejc
Officiell webbadress https://chromewebstore.google.com/detail/switchvox-screen-sharing/odnmjffmhmkbebhofkmeeejdbcofiejc
Beskrivning Enables screen-sharing for chrome in the switchboard
Filstorlek 4.03 KB
Antal Installationer 884
Aktuell Version 0.0.2
Senast Uppdaterad 2018-10-24
Publiceringsdatum 2018-10-24
Betyg 1.00/5 Totalt 1 Betyg
Utvecklare Digium, Inc.
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
            ]
        }
    ]
}