您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
4/18/2022, 10:05:25 PM
// ==UserScript== // @name Tab Autocomplete for AMQ // @namespace Violentmonkey Scripts // @match https://animemusicquiz.com/ // @grant none // @license MIT // @version 1.0 // @author - // @description 4/18/2022, 10:05:25 PM // ==/UserScript== let answer_input = document.querySelector("#qpAnswerInput"); let selection = null; function KeyCheck(e) { if(e.code === "Tab") { if(e.shiftKey) { // Go previous let autocomplete_list = document.querySelectorAll("#qpAnswerInputContainer > div.awesomplete > ul > li"); if(autocomplete_list.length === 0) return; if(selection != null) { autocomplete_list[selection % autocomplete_list.length].style.background = '' autocomplete_list[selection % autocomplete_list.length].style.color = '' } if(selection == null || selection == 0) { selection = autocomplete_list.length - 1; } else { selection -= 1; } autocomplete_list[selection % autocomplete_list.length].parentNode.scrollTop = autocomplete_list[selection % autocomplete_list.length].offsetTop autocomplete_list[selection % autocomplete_list.length].style.background = 'hsl(200, 40%, 80%)' autocomplete_list[selection % autocomplete_list.length].style.color = 'black' answer_input.value = autocomplete_list[selection % autocomplete_list.length].textContent; } else { // Go next let autocomplete_list = document.querySelectorAll("#qpAnswerInputContainer > div.awesomplete > ul > li"); if(autocomplete_list.length === 0) return; if(selection != null) { autocomplete_list[selection % autocomplete_list.length].style.background = '' autocomplete_list[selection % autocomplete_list.length].style.color = '' } if(selection == null || selection == autocomplete_list.length - 1) { selection = 0; } else { selection += 1; } autocomplete_list[selection % autocomplete_list.length].parentNode.scrollTop = autocomplete_list[selection % autocomplete_list.length].offsetTop autocomplete_list[selection % autocomplete_list.length].style.background = 'hsl(200, 40%, 80%)' autocomplete_list[selection % autocomplete_list.length].style.color = 'black' answer_input.value = autocomplete_list[selection % autocomplete_list.length].textContent; } } } window.addEventListener('keydown', KeyCheck, true); answer_input.addEventListener("input", () => { selection = null } )