quizlet match game cheat

try to take over the world!

  1. // ==UserScript==
  2. // @name quizlet match game cheat
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2
  5. // @description try to take over the world!
  6. // @author You
  7. // @match *://quizlet.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. document.onclick = ()=>{main();}
  12.  
  13. function main(){
  14. let suc = false;
  15. try{
  16. let container = document.getElementsByClassName('MatchModeQuestionScatterBoard is-ready')[0],
  17. all_options = container.children,
  18. words = [],
  19. description = [],
  20. color_code = ['pink','blue','yellow','red','black','green'];
  21. for(let i = 0;i<all_options.length;i++){
  22. if(all_options[i].innerText.split(' ').length <= 3){
  23. words.push(all_options[i]);
  24. }else{
  25. description.push(all_options[i]);
  26. }
  27. }
  28. for(let j = 0;j<words.length;j++){
  29. let a = words[j],
  30. b = description[j],
  31. c = a.style.transform.split('e')[1];
  32. b.style.backgroundColor = color_code[j];
  33. a.style.backgroundColor = color_code[j];
  34. }
  35. console.log(words,description);
  36. suc = true;
  37. }catch(e){
  38. window.setTimeout(()=>{main()},10);
  39. console.log(e)
  40. }
  41. }

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址