HCPSS Canvas Assignment Extension
Collect all assignments for courses in Canvas
HCPSS Canvas Assignment Extensionคืออะไร?
HCPSS Canvas Assignment Extension เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Ankit Patel และคุณลักษณะหลักของมันคือ "Collect all assignments for courses in Canvas"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย HCPSS Canvas Assignment Extension
ดาวน์โหลดไฟล์ส่วนขยาย HCPSS Canvas Assignment Extension ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
***This extension is my personal project. It is not an official HCPSS developed or supported solution. Please do not contact HCPSS for support. Developer contact information is provided on the Chrome Webstore page.*** Extension for the HCPSS Canvas LMS instance. This extension adds a new section to the sidebar which displays all active assignments which have no submissions. This allows students to easily see which assignments must still be turned in. * This extension does not store any data locally. * This extension does not communicate with any third-party servers. Changelog ========= Changes in v4.0: - Updated for 2021 Canvas changes. - Unsubmitted assignments appear when in small-width mode in the new tray Changes in v3.2: - Filter out past-due assignments from list Changes in v3.1: - Added explicit ordering to assignments. Changes in v3: - Modernized the underlying JavaScript - Streamlined API calls to avoid hitting throttling limits
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | HCPSS Canvas Assignment Extension |
ID | baabmfbgjcnooapabhjehpakihoihmin |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/hcpss-canvas-assignment-e/baabmfbgjcnooapabhjehpakihoihmin |
คำอธิบาย | Collect all assignments for courses in Canvas |
ขนาดไฟล์ | 6.23 KB |
จำนวนการติดตั้ง | 1,849 |
เวอร์ชันปัจจุบัน | 4.0 |
อัปเดตครั้งล่าสุด | 2021-09-06 |
วันที่เผยแพร่ | 2020-09-19 |
คะแนน | 4.91/5 รวมทั้งหมด 11 คะแนน |
ผู้พัฒนา | Ankit Patel |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
เว็บไซต์ส่วนขยาย | https://github.com/ankpat/CanvasAssignmentExtension |
URL หน้าช่วยเหลือ | https://github.com/ankpat/CanvasAssignmentExtension/issues |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "HCPSS Canvas Assignment Extension", "version": "4.0", "description": "Collect all assignments for courses in Canvas", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/hcpss.instructure.com\/*" ], "js": [ "contentScript.js" ], "run_at": "document_idle" } ] } |