Wordle Hack

If you really want to cheat at Wordle, this will tell you the answer -_-

目前为 2022-01-26 提交的版本。查看 最新版本

// ==UserScript==
// @name         Wordle Hack
// @version      1.0
// @description  If you really want to cheat at Wordle, this will tell you the answer -_-
// @author       Logzilla6
// @match        https://www.powerlanguage.co.uk/wordle/*
// @icon         https://www.google.com/s2/favicons?domain=powerlanguage.co.uk
// @grant        none
// @namespace https://greasyfork.org/users/783447
// ==/UserScript==

(function() {
    'use strict';
    let str = (localStorage.gameState)
let substring = str.substring(105,110);

alert(substring);
})();