您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Custom UI for Lexia Core 5 Reading
当前为
// ==UserScript== // @name Lexia Core 5 Reading UI // @namespace http://tampermonkey.net/ // @version 3.1 // @description Custom UI for Lexia Core 5 Reading // @author fdslalkad // @match *://*.lexiacore5.com/* // @grant none // ==/UserScript== (function() { 'use strict'; let menuVisible = true; const menu = document.createElement('div'); menu.style.position = 'fixed'; menu.style.top = '10px'; menu.style.right = '10px'; menu.style.width = '200px'; menu.style.backgroundColor = 'rgba(255, 255, 255, 0.8)'; menu.style.border = '1px solid #000'; menu.style.padding = '10px'; menu.style.zIndex = '9999'; menu.style.display = 'block'; menu.draggable = true; const createButton = (text, callback) => { const button = document.createElement('button'); button.innerText = text; button.style.margin = '5px'; button.onclick = callback; menu.appendChild(button); }; createButton('Correct Answer', () => { // Logic to get and input the correct answer }); let autoBotActive = false; createButton('AutoBot', () => { autoBotActive = !autoBotActive; // Logic to start/stop the AutoBot }); createButton('Finish Level', () => { alert("Yeahhh.. That's WAY too hard."); }); createButton('Change Units', () => { const units = prompt("What would you like to set your Units to?"); if (units) { // Logic to set units } }); createButton('Change Minutes', () => { const minutes = prompt("What would you like to set your Minutes to?"); if (minutes) { // Logic to set minutes } }); createButton('Logout', () => { // Logic to log out }); document.body.appendChild(menu); document.addEventListener('keydown', (event) => { if (event.key === 'q') { menuVisible = !menuVisible; menu.style.display = menuVisible ? 'block' : 'none'; } }); })();
QingJ © 2025
镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址