Greasy Fork 还支持 简体中文。

Wordle - Word Reveal Hack

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.

目前為 2022-02-09 提交的版本,檢視 最新版本

// ==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() );