Skip to content

Instantly share code, notes, and snippets.

@jwhamilton99
Last active February 4, 2022 23:08
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
minified wordle code
// Here's a minified version that you can paste into a bookmark's url field if you can't do it from the page itself
javascript:(function() { if(window.location.host == "www.powerlanguage.co.uk" && window.location.pathname == "/wordle/") { let game = document.body.getElementsByTagName("game-app")[0]; if(game.gameStatus != "IN_PROGRESS") { window.alert("Game is already finished."); return; } game.addLetter(game.solution); game.tileIndex = 5; game.submitGuess(); } else { window.alert("You are currently not on the Wordle website."); } })();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment