Last active
November 1, 2019 15:00
-
-
Save deepanchal/81a6647f4d511a3564aadf0999808767 to your computer and use it in GitHub Desktop.
Hide Canvas Quizzes with Console
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
// Copy paste these lines in javascript console to hide answers from canvas quizzes | |
document.querySelectorAll('.answer_arrow, .wrong_answer, div.user_points, input[type="radio"]').forEach(item=>item.remove()); | |
document.querySelectorAll('.answers .answer').forEach(item=>item.setAttribute('style', 'opacity: 1')); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment