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 |
公式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 |
Eメール | [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" } ] } |