Wordle Hack

Instantly solves a wordle puzzle... Impress your friends but never actually get the satisfaction of winning!

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name           Wordle Hack
// @version        1.0.2
// @author         Eli Richardson
// @description    Instantly solves a wordle puzzle... Impress your friends but never actually get the satisfaction of winning!
// @match          https://www.nytimes.com/games/wordle/index.html
// @run-at         document-end
// @license        MIT
// @namespace https://greasyfork.org/users/873652
// ==/UserScript==

document.addEventListener('readystatechange', function (event) {
    if (document.readyState === 'complete') {
        var gameState = JSON.parse(window.localStorage['nyt-wordle-state']);
        var solution = gameState.solution;
        if (gameState.rowIndex !== 0) {
            delete localStorage['nyt-wordle-state'];
            return window.location.reload();
        }
        for (var i = 0; i < 5; i++) {
            var kevent = new KeyboardEvent('keydown', { key: solution[i] });
            window.dispatchEvent(kevent);
        }
        document
            .querySelector('body > game-app')
            .shadowRoot.querySelector('#game > game-keyboard')
            .shadowRoot.querySelector('#keyboard > div:nth-child(3) > button:nth-child(1)')
            .click();
    }
});