Canvas Live Chat
Extension will place a chat window for the class below a stream on Canvas.
Hvad er Canvas Live Chat?
Canvas Live Chat er en Chrome-udvidelse udviklet af simpsonaustin756, og dens hovedfunktion er "Extension will place a chat window for the class below a stream on Canvas.".
Udvidelsesskærmbilleder
Download Canvas Live Chat-udvidelses-CRX-fil
Download Canvas Live Chat-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
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.
Grundlæggende oplysninger om udvidelsen
Navn | Canvas Live Chat |
ID | ejpaglbjdljonlljljegofedlinjiigp |
Officiel URL | https://chromewebstore.google.com/detail/canvas-live-chat/ejpaglbjdljonlljljegofedlinjiigp |
Beskrivelse | Extension will place a chat window for the class below a stream on Canvas. |
Filstørrelse | 82.93 KB |
Antal Installationer | 24 |
Nuværende Version | 1.0 |
Senest Opdateret | 2018-02-01 |
Udgivelsesdato | 2018-02-01 |
Udvikler | simpsonaustin756 |
Betalingsmetode | free |
Understøttede Sprog | 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" ] } |