Lexia Core 5 Reading UI (DOES NOT WORK, DONT USE)

Custom UI for Lexia Core 5 Reading

// ==UserScript==
// @name         Lexia Core 5 Reading UI (DOES NOT WORK, DONT USE)
// @namespace    http://tampermonkey.net/
// @version      999999
// @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或关注我们的公众号极客氢云获取最新地址