CanvasGrade
Displays hidden grades
什麼是CanvasGrade?
CanvasGrade是由Jack Hughes開發的Chrome擴展程式,該擴展的主要功能是“Displays hidden grades”。
擴展截圖
下載CanvasGrade擴展crx文件
下載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 |
官方網址 | 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" } ] } |