Canvas Betterizer
Quality-of-life improvements for Canvas by Instructure
Cos'è Canvas Betterizer?
Canvas Betterizer è un'estensione di Chrome sviluppata da Rob Noorda, e la sua funzione principale è "Quality-of-life improvements for Canvas by Instructure".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Canvas Betterizer
Scarica i file di estensione Canvas Betterizer in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
If you're a teach spending time grading and working in Canvas, you know how much time it can take! Canvas Betterizer is meant to make your time spent in Canvas by Instructure more efficient by adding small quality-of-life improvements, especially in SpeedGrader: -Automatically focuses and selects the student grade -Hit enter to submit grade and move on to the next student -Save comments that you type often and pull them from a dropdown box to make grading even faster! -Hit enter when typing a comment to submit it Outside of Speedgrader: -Remove those pesky tooltips that show up in the gradebook and cover up assignment scores -Smallify your messages to make your inbox more accessible Canvas Betterizer collects no information about you or your students. Privacy policy found at http://robertnoorda.com/portfolio/canvas-betterizer/#privacy
Informazioni di Base sull'Estensione
Nome | Canvas Betterizer |
ID | pndigbfohhechaafblmjdicbbahgigfg |
URL Ufficiale | https://chromewebstore.google.com/detail/canvas-betterizer/pndigbfohhechaafblmjdicbbahgigfg |
Descrizione | Quality-of-life improvements for Canvas by Instructure |
Dimensione del File | 26.88 KB |
Conteggio Installazioni | 12,129 |
Versione Corrente | 0.0.0.2 |
Ultimo Aggiornamento | 2021-02-14 |
Data di Pubblicazione | 2018-10-29 |
Valutazione | 4.00/5 Totale 6 Valutazioni |
Sviluppatore | Rob Noorda |
[email protected] | |
Tipo di Pagamento | free |
Sito Web dell'Estensione | http://robertnoorda.com/portfolio/canvas-betterizer/ |
Lingue Supportate | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Canvas Betterizer", "short_name": "Betterizer", "description": "Quality-of-life improvements for Canvas by Instructure", "version": "0.0.0.2", "browser_action": { "default_icon": "static\/images\/icon.png", "default_popup": "popup.html" }, "content_scripts": [ { "matches": [ "https:\/\/*.instructure.com\/conversations*" ], "js": [ "js\/inbox.js" ] }, { "matches": [ "https:\/\/*.instructure.com\/*\/speed_grader*" ], "js": [ "js\/speedgrader.js" ] }, { "matches": [ "https:\/\/*.learn.vccs.edu\/conversations*" ], "js": [ "js\/inbox.js" ] }, { "matches": [ "https:\/\/*.learn.vccs.edu\/*\/speed_grader*" ], "js": [ "js\/speedgrader.js" ] } ], "icons": { "16": "static\/images\/icon16.png", "32": "static\/images\/icon32.png", "48": "static\/images\/icon48.png", "64": "static\/images\/icon64.png", "128": "static\/images\/icon128.png" }, "permissions": [ "activeTab", "storage" ] } |