quizlet match game cheat

try to take over the world!

目前為 2019-07-31 提交的版本,檢視 最新版本

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

QingJ © 2025

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