Skip to content

Instantly share code, notes, and snippets.

@deepanchal
Last active November 1, 2019 15:00
Show Gist options
  • Save deepanchal/81a6647f4d511a3564aadf0999808767 to your computer and use it in GitHub Desktop.
Save deepanchal/81a6647f4d511a3564aadf0999808767 to your computer and use it in GitHub Desktop.
Hide Canvas Quizzes with Console
// 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