您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove all flashcard answer fuzz
// ==UserScript== // @name Quizlet fuzz remover // @version 1.1 // @grant none // @include https://quizlet.com/*-flash-cards/ // @description Remove all flashcard answer fuzz // @namespace https://gf.qytechs.cn/users/22981 // @license MIT // ==/UserScript== /// While the load more button exists, load more let tryCounter = 1 console.log('script running') interval_documentHidden = setInterval(function checker() { if (!document.hidden) { if (document.readyState === 'complete') { try{ let scripts = document.getElementsByTagName('script'); [].forEach.call(scripts, el => { if (el.src.includes('setSlug')) {el.remove();let found = true;console.log('found slug')} }); let fuzz = document.querySelectorAll('[class*="b1sa2ccx"'); [].forEach.call(fuzz, el => { el.classList.remove('b1sa2ccx') }); if (found = true) {console.log('script exiting');clearInterval(interval_documentHidden)} } catch{ console.log('Waiting for elements to load. Try #'+tryCounter) tryCounter++; if (tryCounter > 5){ console.log('Quizlet fuzz remover-Something wrong happened.') clearInterval(interval_documentHidden)} } } } }, 1000);
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址