Canvas Live Chat
Extension will place a chat window for the class below a stream on Canvas.
Was ist Canvas Live Chat?
Canvas Live Chat ist eine Chrome-Erweiterung, die von simpsonaustin756 entwickelt wurde, und ihr Hauptmerkmal ist "Extension will place a chat window for the class below a stream on Canvas.".
Erweiterungsscreenshots
Canvas Live Chat-Erweiterungs-CRX-Datei herunterladen
Laden Sie Canvas Live Chat-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | Canvas Live Chat |
ID | ejpaglbjdljonlljljegofedlinjiigp |
Offizielle URL | https://chromewebstore.google.com/detail/canvas-live-chat/ejpaglbjdljonlljljegofedlinjiigp |
Beschreibung | Extension will place a chat window for the class below a stream on Canvas. |
Dateigröße | 82.93 KB |
Installationsanzahl | 24 |
Aktuelle Version | 1.0 |
Letztes Update | 2018-02-01 |
Veröffentlichungsdatum | 2018-02-01 |
Entwickler | simpsonaustin756 |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |