CanvasGrade
Displays hidden grades
CanvasGrade là gì?
CanvasGrade là một tiện ích mở rộng Chrome được phát triển bởi Jack Hughes, và tính năng chính của nó là "Displays hidden grades".
Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng
Tải xuống tệp CRX của tiện ích mở rộng CanvasGrade
Tải xuống các tệp mở rộng CanvasGrade dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.
Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng
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]
Thông Tin Cơ Bản về Tiện Ích Mở Rộng
Tên | CanvasGrade |
ID | cbinmjekhdabagpnjoakcackljbdeikk |
URL Chính Thức | https://chromewebstore.google.com/detail/canvasgrade/cbinmjekhdabagpnjoakcackljbdeikk |
Mô tả | Displays hidden grades |
Kích Thước Tệp | 64.1 KB |
Số Lần Cài Đặt | 150 |
Phiên Bản Hiện Tại | 3.0 |
Cập Nhật Lần Cuối | 2021-04-21 |
Ngày Phát Hành | 2020-10-21 |
Đánh Giá | 5.00/5 Tổng số 1 Đánh Giá |
Nhà Phát Triển | Jack Hughes |
[email protected] | |
Loại Thanh Toán | free |
URL Trang Trợ Giúp | https://forms.gle/eZD9ZxtdTfeLdvaW7 |
Ngôn Ngữ Được Hỗ Trợ | 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" } ] } |