Canvas Live Chat
Extension will place a chat window for the class below a stream on Canvas.
Vad är Canvas Live Chat?
Canvas Live Chat är en Chrome-tillägg utvecklad av simpsonaustin756, och dess huvudfunktion är "Extension will place a chat window for the class below a stream on Canvas.".
Tilläggsskärmbilder
Ladda ner Canvas Live Chat-förlängningens CRX-fil
Ladda ner Canvas Live Chat-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
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äggande Information om Tillägg
Namn | Canvas Live Chat |
ID | ejpaglbjdljonlljljegofedlinjiigp |
Officiell webbadress | https://chromewebstore.google.com/detail/canvas-live-chat/ejpaglbjdljonlljljegofedlinjiigp |
Beskrivning | Extension will place a chat window for the class below a stream on Canvas. |
Filstorlek | 82.93 KB |
Antal Installationer | 24 |
Aktuell Version | 1.0 |
Senast Uppdaterad | 2018-02-01 |
Publiceringsdatum | 2018-02-01 |
Utvecklare | simpsonaustin756 |
Betalningssätt | free |
Stödda Språk | 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" ] } |