This script displays an alert box with the daily word. Load the game and it will show an alert with the daily wordle. Always "guess" the word in the first try.
当前为
// ==UserScript==
// @name Wordle - Word Reveal Hack
// @namespace q1k
// @version 1.0
// @description This script displays an alert box with the daily word. Load the game and it will show an alert with the daily wordle. Always "guess" the word in the first try.
// @author q1k
// @match *://www.powerlanguage.co.uk/wordle/*
// @run-at document-idle
// ==/UserScript==
alert("\nToday's word: \n\n" + JSON.parse(localStorage.gameState).solution.toUpperCase() );