-
-
Save jwhamilton99/5573a494c304a088da0672d9d1c7e44d to your computer and use it in GitHub Desktop.
minified wordle code
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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