Skip to content

Instantly share code, notes, and snippets.

@mralfarrakhan
Created April 8, 2025 04:38
Show Gist options
  • Select an option

  • Save mralfarrakhan/1b4c7a03266f9f87bacf8045d14b0378 to your computer and use it in GitHub Desktop.

Select an option

Save mralfarrakhan/1b4c7a03266f9f87bacf8045d14b0378 to your computer and use it in GitHub Desktop.
Got those stinky read marks in your SIAKNG staining your transcript? worry not! run this on main/Academic/HistoryByTerm via console to hide those pesky marks!
(() => {
const rows = document.querySelectorAll("table tr.alt, table tr.x");
let i = 1;
for (k of rows) {
const data = k.querySelectorAll("td");
if (getComputedStyle(data[8]).color !== 'rgb(17, 17, 17)') {
k.hidden = 'true';
} else {
data[0].innerHTML = `${i}.`;
i += 1;
}
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment