It’s become a routine thing for me to open up two sites at the start of a new day, namely Wordle and CineNerdle2.
I’d like to think that I’m pretty decent at Wordle, but how would I know how well I stack up against the competition?
Enter WordleBot
WordleBot is the game analysis tool to help see how well you did in today’s game. It scores your guesses by how lucky they were, or how skillful the guess was, as well as how many potential words there are remaining in the pool.
I don’t really understand what determines ‘luck’ or ‘skill’ here, but I like seeing what other guesses there might have been. And it’s always an ego boost for me when I make the correct guess in fewer turns than the bot.
Either way, if you use WordleBot enough times, eventually you’ll come across this screen before you can view the analysis of the day:
Getting rid of it
I respect the effort that gets put into both NY Times’ journalism as well as their games, but I’m not really too interested in what they offer. Perhaps one day when I get more serious about crosswords (their crosswords are pretty good too but require a subscription) or the news, I might! But for now, I just enjoy playing this one game.
So every time I finish my game, I remove this ad by going to the browser console, and make a couple of clicks. I’ve been doing this dance for a fair bit now, but today I remembered bookmarklets are a thing.
Bookmarklets are basically code saved as browser bookmarks that execute upon being clicked on. So I turned my manual actions into a line of Javascript, and generated a bookmark out of it. From now on, all I need to do when I reach the ad screen is to click on the bookmark!
Here’s how to get it working on your device:
-
Right click on this link and save it as a bookmark.
-
When you reach the NY Times ad screen that prevents you from clicking the link to view WordleBot’s analysis, click on the bookmark.
-
The ad will disappear, and you can then proceed to gloat or gripe over how you did against the bot!
The code
For anyone concerned about the safety of it, the code is just a line that removes the ad element from the page. Here it is:
javascript:(function()%7Bdocument.querySelector('%23standalone-footer').remove()%7D)()%3B
You can even hover your cursor over the bookmarklet link and verify it for yourself on the bottom left of the browser. Enjoy Wordle-ing!
Back to top