Last active
November 13, 2025 03:10
-
-
Save onyxiarivera/677122efc50a45de891971e137cda465 to your computer and use it in GitHub Desktop.
Hide Teacher Use
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ==UserScript== | |
| // @name Hide Teacher Use Marks | |
| // @namespace hideteacheruse | |
| // @version 2025-11-06 | |
| // @description try to take over the world! | |
| // @author Onyxia Rivera | |
| // @match https://canvas.tastafe.tas.edu.au/courses/*/grades | |
| // @icon https://www.google.com/s2/favicons?sz=64&domain=canvas.tastafe.tas.edu.au | |
| // @grant none | |
| // ==/UserScript== | |
| (function() { | |
| 'use strict'; | |
| let assignments = document.getElementsByClassName("student_assignment"); | |
| assignments = [].slice.call(assignments); | |
| assignments.forEach(function(value) { | |
| if (value.innerHTML.includes("Assessment Record")) { | |
| value.style = "visibility: collapse;"; | |
| console.log("Hidden " + value.id); | |
| } | |
| }) | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment