ClassChat
Adds instant message-like functionality to Piazza and Blackboard class pages.
ClassChatคืออะไร?
ClassChat เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Spencer Wilson และคุณลักษณะหลักของมันคือ "Adds instant message-like functionality to Piazza and Blackboard class pages."
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย ClassChat
ดาวน์โหลดไฟล์ส่วนขยาย 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 |
URL อย่างเป็นทางการ | 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 } } |