Canvas Live Chat
Extension will place a chat window for the class below a stream on Canvas.
What is Canvas Live Chat?
Canvas Live Chat is a Chrome extension developed by simpsonaustin756, and its main feature is "Extension will place a chat window for the class below a stream on Canvas.".
Extension Screenshots
Download Canvas Live Chat Extension CRX File
Download Canvas Live Chat extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Canvas Live Chat |
ID | ejpaglbjdljonlljljegofedlinjiigp |
Official URL | https://chromewebstore.google.com/detail/canvas-live-chat/ejpaglbjdljonlljljegofedlinjiigp |
Description | Extension will place a chat window for the class below a stream on Canvas. |
File Size | 82.93 KB |
Installation Count | 24 |
Current Version | 1.0 |
Last Updated | 2018-02-01 |
Publish Date | 2018-02-01 |
Developer | simpsonaustin756 |
Payment Type | free |
Supported Languages | 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" ] } |