Quizlet Explaniation Exploit

A small script to bypass quizlet's explainations (originally slader) pay lock.

目前为 2021-12-01 提交的版本。查看 最新版本

  1. // ==UserScript==
  2. // @name Quizlet Explaniation Exploit
  3. // @version 0.2
  4. // @description A small script to bypass quizlet's explainations (originally slader) pay lock.
  5. // @author DanPlayz0
  6. // @match https://quizlet.com/explanations/textbook-solutions/*
  7. // @grant none
  8. // @license MIT
  9. // @namespace https://greasyfork.org/users/831955
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. setTimeout(() => yes(), 2000)
  14. function yes() {
  15. document.querySelector(".we2bqom").remove();
  16. [].forEach.call(document.querySelectorAll(".hpidy4b"), (el) => el.classList.remove("hpidy4b"));
  17. [].forEach.call(document.querySelectorAll(".hs7m9cv"), (el) => el.classList.remove("hs7m9cv"));
  18. }
  19. })();