Automatically solves New York Times Sudoku puzzles in your browser. Displays the solution in a popup, highlighting prefilled cells.
- Detects and solves NYT Sudoku puzzles on the official page
- Displays solution in a styled board in the extension popup/side panel
- Highlights prefilled cells for clarity
- Works with the latest NYT Sudoku HTML structure
- Load the extension in Chrome (Developer mode > Load unpacked)
- Open https://www.nytimes.com/puzzles/sudoku
- Click the extension icon or open the side panel
- Click "Solve Puzzle" to view the solution
manifest.json— Chrome extension manifestpopup.html— Popup/side panel UIpopup.js— Popup/side panel logicpopup.css— Popup/side panel stylescontent.js— Content script for extracting and solving the puzzlebackground.js— Background service workersudoku.cpp— Original C++ solver (reference)