CanvasGrade
Displays hidden grades
CanvasGradeคืออะไร?
CanvasGrade เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jack Hughes และคุณลักษณะหลักของมันคือ "Displays hidden grades"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย CanvasGrade
ดาวน์โหลดไฟล์ส่วนขยาย CanvasGrade ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย
คำแนะนำในการใช้ส่วนขยาย
Stressed about your hidden grades? This extension will reveal your overall grades. It includes full support for classes with weighted categories and displays your total points and overall grade in each class on the canvas grades page. It also includes support for canvas's native "what-if-scores" and will recalculate your overall grade when you update one of these scores. Update: Version 3.0 (4/20/21) What's new: - Update All classes button - Weighted class options! Customize the weights of your classes - Weighted class "Always zero percent" bugfix If you have any problems please feel free to email me at any time: [email protected]
ข้อมูลพื้นฐานของส่วนขยาย
ชื่อ | CanvasGrade |
ID | cbinmjekhdabagpnjoakcackljbdeikk |
URL อย่างเป็นทางการ | https://chromewebstore.google.com/detail/canvasgrade/cbinmjekhdabagpnjoakcackljbdeikk |
คำอธิบาย | Displays hidden grades |
ขนาดไฟล์ | 64.1 KB |
จำนวนการติดตั้ง | 150 |
เวอร์ชันปัจจุบัน | 3.0 |
อัปเดตครั้งล่าสุด | 2021-04-21 |
วันที่เผยแพร่ | 2020-10-21 |
คะแนน | 5.00/5 รวมทั้งหมด 1 คะแนน |
ผู้พัฒนา | Jack Hughes |
อีเมล | [email protected] |
ประเภทการชำระเงิน | free |
URL หน้าช่วยเหลือ | https://forms.gle/eZD9ZxtdTfeLdvaW7 |
ภาษาที่รองรับ | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "CanvasGrade", "version": "3.0", "version_name": "3.0", "description": "Displays hidden grades", "author": "Jack Hughes", "permissions": [ "https:\/\/kentdenver.instructure.com\/courses\/*\/grades", "tabs", "storage", "windows" ], "background": { "scripts": [ "background.js" ], "persistent": false }, "browser_action": { "default_icon": "icon.png" }, "icons": { "64": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.instructure.com\/courses\/*\/grades" ], "js": [ "modifier.js" ], "run_at": "document_end" } ] } |