Add GridPuzzle Sudoku Solver Chrome Extension#71
Add GridPuzzle Sudoku Solver Chrome Extension#71google-labs-jules[bot] wants to merge 2 commits intodevelopfrom
Conversation
- Create `ChromeExtensions/GridPuzzleSudoku/` directory. - Add `manifest.json` for Manifest V3 extension. - Add `content.js` to scrape grid, solve using backtracking, and input solution. - Add `styles.css` for the "Solve" button. - Add `README.md` with installation instructions.
|
👋 Jules, reporting for duty! I'm here to lend a hand with this pull request. When you start a review, I'll add a 👀 emoji to each comment to let you know I've read it. I'll focus on feedback directed at me and will do my best to stay out of conversations between you and other bots or reviewers to keep the noise down. I'll push a commit with your requested changes shortly after. Please note there might be a delay between these steps, but rest assured I'm on the job! For more direct control, you can switch me to Reactive Mode. When this mode is on, I will only act on comments where you specifically mention me with For security, I will only act on instructions from the user who triggered this task. New to Jules? Learn more at jules.google/docs. |
Qodana Community for Python125 new problems were found
☁️ View the detailed Qodana report Contact Qodana teamContact us at qodana-support@jetbrains.com
|
|
can you call python solver ? |
I have updated the implementation to call the Python solver. I added a |
- Add `Run/ExtensionServer.py`: A Flask server exposing the SudokuSolver. - Update `ChromeExtensions/GridPuzzleSudoku/content.js`: Now calls the local Python server instead of using a client-side backtracking solver. - Update `ChromeExtensions/GridPuzzleSudoku/README.md`: Add instructions for running the server.
This PR introduces a Chrome extension designed to solve Sudoku puzzles on
gridpuzzle.com, specifically targeting the "Evil Sudoku" page but working on others as well.The extension works by:
data-readonlyattributes to identify initial clues.The implementation is contained entirely within
ChromeExtensions/GridPuzzleSudoku/.PR created automatically by Jules for task 2302771799547852570 started by @newtomsoft