Canvas Live Chat

Extension will place a chat window for the class below a stream on Canvas.

Co je Canvas Live Chat?

Canvas Live Chat je rozšíření Chrome vyvinuté simpsonaustin756, a jeho hlavní funkcí je „Extension will place a chat window for the class below a stream on Canvas.“.

Snímky obrazovky rozšíření

screenshot

Stáhnout soubor CRX rozšíření Canvas Live Chat

Stáhněte si soubory rozšíření Canvas Live Chat ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        Extends the functionality of any canvas video stream by adding the dedicated class chat to the same page as the stream itself. This makes it easier to follow the content of the actual stream, stay involved in the chat, and reduce the potential for missing pings.                    

Základní Informace o Rozšíření

Název Canvas Live Chat Canvas Live Chat
ID ejpaglbjdljonlljljegofedlinjiigp
Oficiální URL https://chromewebstore.google.com/detail/canvas-live-chat/ejpaglbjdljonlljljegofedlinjiigp
Popis Extension will place a chat window for the class below a stream on Canvas.
Velikost souboru 82.93 KB
Počet instalací 24
Aktuální Verze 1.0
Poslední Aktualizace 2018-02-01
Datum Vydání 2018-02-01
Vývojář simpsonaustin756
Typ Platby free
Podporované Jazyky en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Canvas Live Chat",
    "short_name": "Live Chat",
    "description": "Extension will place a chat window for the class below a stream on Canvas.",
    "version": "1.0",
    "author": "Austin Simpson",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.instructure.com\/*"
            ],
            "js": [
                "jquery-3.2.1.min.js",
                "livechat.js"
            ]
        }
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "settings.html"
    },
    "permissions": [
        "activeTab",
        "storage"
    ]
}