Advertisement
NonplayerCharacter

StrataScratch.com | Hide locked questions

Apr 5th, 2022
1,220
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Hide all premium questions in https://platform.stratascratch.com/coding?questionType=2
  2. // confirmed to work on April 5 2022
  3. // run in browser console
  4. var all_locks = document.querySelectorAll('i.fa.fa-lock[style="color: gold;"]');
  5. all_locks.forEach(function(el){ el.parentNode.parentNode.parentNode.parentNode.remove(); });
  6.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement