Fallout Terminal Solver

solves the terminal game of fallout

// ==UserScript==
// @name         Fallout Terminal Solver
// @namespace    rebelwithoutarootcause
// @version      0.1
// @description  solves the terminal game of fallout
// @author       optionsx
// @match        https://rebelwithoutarootcause.com/demos/terminal/
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==
//window.TogglePower() // powers on the terminal
//document.getElementById("poweron").play(); // plays power on sound effect
setInterval(_ => {
     document.querySelector(`[data-word=${window.Correct.toUpperCase()}]`).click()
    //document.getElementById("passgood").play(); // plays passGood sound effect
}, 3000)