Canvas Live Chat
Extension will place a chat window for the class below a stream on Canvas.
Canvas Live Chatとは何ですか?
Canvas Live Chatはsimpsonaustin756によって開発されたChromeの拡張機能で、その主な機能は「Extension will place a chat window for the class below a stream on Canvas.」です。
拡張機能のスクリーンショット
Canvas Live Chat拡張機能のCRXファイルをダウンロード
Canvas Live Chat拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Canvas Live Chat |
ID | ejpaglbjdljonlljljegofedlinjiigp |
公式URL | https://chromewebstore.google.com/detail/canvas-live-chat/ejpaglbjdljonlljljegofedlinjiigp |
説明 | Extension will place a chat window for the class below a stream on Canvas. |
ファイルサイズ | 82.93 KB |
インストール数 | 24 |
現在のバージョン | 1.0 |
最終更新日 | 2018-02-01 |
公開日 | 2018-02-01 |
開発者 | simpsonaustin756 |
支払い方法 | free |
対応言語 | 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" ] } |