您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove lag-causing autocompletion in Quizlet test
当前为
// ==UserScript== // @name Quizlet Test AutoCompletetion Disabler // @version 1.2 // @author refracta // @description Remove lag-causing autocompletion in Quizlet test // @match https://quizlet.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=quizlet.com // @license MIT // @namespace https://greasyfork.org/users/467840 // ==/UserScript== (async function () { 'use strict'; if (location.pathname.includes('/test/')) { Array.prototype.push = (function (original) { return function (...args) { const isAutoCompleteElement = args.some(arg => arg && typeof arg === 'object' && Object.keys(arg).length === 2 && 'character' in arg && 'lang' in arg); if (isAutoCompleteElement) { return this.length; } else { return original.apply(this, args); } }; })(Array.prototype.push); } })();