Created
June 17, 2024 00:13
-
-
Save anniesullie/e64a2cf32d2e783039c736581151cf33 to your computer and use it in GitHub Desktop.
Printable Badge Clues for AADL Summer Game (hints hidden)
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
for (let node of document.getElementById('record-info').children) { | |
if (node.id != 'badge-progress' && node.tagName != 'H1') { | |
node.style.display = 'none'; | |
} | |
} | |
for (let footer of document.getElementsByTagName('footer')) { | |
footer.style.display = 'none'; | |
} | |
document.getElementById('record-image-metadata').style.display = 'none'; | |
document.getElementsByTagName('header')[0].style.display = 'none'; | |
document.getElementById('record-info').style.marginLeft = '30px'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
// Add this in to get the hints shown:
for (let s of document.querySelectorAll('td > span')) {
s.click();
}