Canvas Dashboard Grades
A simple extension that adds your current grades to the dashboard in Canvas LMS
Canvas Dashboard Grades क्या है?
Canvas Dashboard Grades Unknown द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A simple extension that adds your current grades to the dashboard in Canvas LMS"।
एक्सटेंशन स्क्रीनशॉट्स
एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें
crx प्रारूप में Canvas Dashboard Grades एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।
एक्सटेंशन उपयोग निर्देश
This extension aims to replicate the "show grades" toggle option in the mobile app that for some reason doesn't exist on the website. This is NOT an official extension, just a random guy working on a fun and simple coding project in his spare time. Your grades are never sent to me as everything is handled on your computer. It uses the official Canvas API to grab your grades and overlays them on the dashboard's card view, so you'll want to make sure you set your dashboard view to "Card View" by clicking on the three vertical dots in the upper right corner and selecting the card view option.
एक्सटेंशन की मूल जानकारी
नाम | Canvas Dashboard Grades |
ID | jnlnibjgafmamocabdhidiaajkdphkpe |
आधिकारिक URL | https://chromewebstore.google.com/detail/canvas-dashboard-grades/jnlnibjgafmamocabdhidiaajkdphkpe |
विवरण | A simple extension that adds your current grades to the dashboard in Canvas LMS |
फ़ाइल का आकार | 21.37 KB |
स्थापना संख्या | 1,861 |
वर्तमान संस्करण | 1.0 |
अंतिम अपडेट | 2019-12-10 |
प्रकाशन तिथि | 2019-12-09 |
रेटिंग | 4.44/5 कुल 9 रेटिंग्स |
डेवलपर | Unknown |
भुगतान के प्रकार | free |
एक्सटेंशन वेबसाइट | https://github.com/budsterblue/CanvasDashboardGrades |
समर्थित भाषाएँ | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Canvas Dashboard Grades", "short_name": "CDG", "description": "A simple extension that adds your current grades to the dashboard in Canvas LMS", "version": "1.0", "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" }, "content_scripts": [ { "matches": [ "https:\/\/*.instructure.com\/*" ], "js": [ "script.js" ] } ] } |