This file contains hidden or 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
| // ==UserScript== | |
| // @name Spelling Bee State Sharing | |
| // @description Adds a keyboard shortcut (Ctrl-B) while playing New York Times Games' Spelling Bee to share a breakdown of the player's current game state, comparing it against the maximum values as given by the “Hints” article; another shortcut (Ctrl-Q) can be used for quick sharing (#words, score rank) | |
| // @version 2026-03-13 | |
| // @author Nouche | |
| // @match https://www.nytimes.com/*/spelling-bee* | |
| // @run-at document-start | |
| // @tag games | |
| // ==/UserScript== |
This file contains hidden or 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
| // ==UserScript== | |
| // @name Wordle Hardcore Mode | |
| // @description Adds a more restrictive “Hard Mode” to New York Times Games' Wordle to warn the player about impossible guesses | |
| // @version 2026-03-04 | |
| // @author Nouche | |
| // @match https://www.nytimes.com/games/*wordle* | |
| // @run-at document-start | |
| // @tag games | |
| // ==/UserScript== |