Skip to content

Instantly share code, notes, and snippets.

@onyxiarivera
Last active November 13, 2025 03:10
Show Gist options
  • Select an option

  • Save onyxiarivera/677122efc50a45de891971e137cda465 to your computer and use it in GitHub Desktop.

Select an option

Save onyxiarivera/677122efc50a45de891971e137cda465 to your computer and use it in GitHub Desktop.
Hide Teacher Use
// ==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