Skip to content

Instantly share code, notes, and snippets.

@Accudio
Created January 14, 2022 09:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Accudio/d89241b9332fd91d247498798ff0fd3d to your computer and use it in GitHub Desktop.
Save Accudio/d89241b9332fd91d247498798ff0fd3d to your computer and use it in GitHub Desktop.
Modify Wordle statistics. Modify object in `JSON.stringify` call and save as a bookmark, run on Wordle page.
javascript:(function(){ localStorage.setItem('statistics', JSON.stringify({ "currentStreak": 100, "maxStreak": 100, "guesses":{ "1": 99, "2": 0, "3": 1, "4": 0, "5": 0, "6": 0, "fail" :0 }, "winPercentage": 100, "gamesPlayed": 100, "gamesWon": 100, "averageGuesses": 1 }))})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment