Wordle Hack

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

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

You will need to install an extension such as Tampermonkey to install this script.

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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();
    }
});