CanvasGrade
Displays hidden grades
CanvasGrade क्या है?
CanvasGrade Jack Hughes द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Displays hidden grades"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में CanvasGrade एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
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" } ] } |