Created
April 8, 2025 04:38
-
-
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!
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
| (() => { | |
| 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