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 (copy) a breakdown of the player's current game state, comparing it against the maximum values as given by that day's answers (also holding down Alt causes the output to be displayed as a browser alert instead); another shortcut (Ctrl-Q) can be used for quick sharing (#words, score rank) | |
| // @version 2026-07-08 | |
| // @author Nouche | |
| // @match https://www.nytimes.com/*/spelling-bee* | |
| // @run-at document-start | |
| // @grant none | |
| // @noframes | |
| // @tag games |
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-07-01 | |
| // @author Nouche | |
| // @match https://www.nytimes.com/games/*wordle* | |
| // @run-at document-start | |
| // @tag games | |
| // ==/UserScript== |