ClassChat
Adds instant message-like functionality to Piazza and Blackboard class pages.
什麼是ClassChat?
ClassChat是由Spencer Wilson開發的Chrome擴展程式,該擴展的主要功能是“Adds instant message-like functionality to Piazza and Blackboard class pages.”。
擴展截圖
下載ClassChat擴展crx文件
下載ClassChat擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
Chat real-time with your classmates, right inside your Piazza and Blackboard course pages. Every class page has a corresponding chat room in which anyone can chat, or if you wish you can start a private conversation with another user. You may change your nick either by typing "/nick" or by clicking your current one, directly to the left of the text input box. This extension was developed on a Chromebook at UC San Diego. Source coming soon to GitHub. If you'd like to see more types of course websites supported, drop me a line at [email protected].
擴展基本資訊
名稱 | ClassChat |
ID | kipffakipdeoibhppkobjmohdpglnmfh |
官方網址 | https://chromewebstore.google.com/detail/classchat/kipffakipdeoibhppkobjmohdpglnmfh |
簡介 | Adds instant message-like functionality to Piazza and Blackboard class pages. |
檔案大小 | 51.41 KB |
安裝次數 | 45 |
目前版本 | 1.0.1.5 |
更新時間 | 2015-04-06 |
上架時間 | 2015-04-05 |
評分 | 4.00/5 共 1 次評分 |
開發者 | Spencer Wilson |
付費類型 | free |
支援的語言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "ClassChat", "version": "1.0.1.5", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "description": "Adds instant message-like functionality to Piazza and Blackboard class pages.", "permissions": [ "tabs" ], "content_scripts": [ { "matches": [ "*:\/\/piazza.com\/class\/*" ], "js": [ "jquery-2.1.3.min.js", "common.js", "piazza.js" ], "css": [ "piazza.css" ], "run_at": "document_start" }, { "matches": [ "*:\/\/ted.ucsd.edu\/*Course%26id*" ], "js": [ "jquery-2.1.3.min.js", "common.js", "blackboard.js" ], "run_at": "document_end" }, { "matches": [ "https:\/\/kiwiirc.com\/client\/irc.freenode.net\/" ], "js": [ "jquery-2.1.3.min.js", "cleankiwi.js" ], "css": [ "cleankiwi.css" ], "run_at": "document_end", "all_frames": true } ], "background": { "scripts": [ "background.js" ], "persistent": false } } |