Last active
November 1, 2021 12:28
-
-
Save sean3z/28f68d3a2478cb7891c626489d25f7ec to your computer and use it in GitHub Desktop.
Get around Quizlet paywall
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
let terms = document.querySelectorAll('.SetPageTerm.has-definitionText, .SetPageTerms-termsList'); | |
for (let term of terms) term.classList.add('is-showing'); | |
document.querySelector('.SignupWallInline').style.display = 'none'; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
After I threw it into the dev, it replied "VM228:3 Uncaught TypeError: Cannot read properties of null (reading 'style')
at :3:44 " , I would like to ask that if I got wrong setting or this code doesn't work anymore.