Sudoku-Solver
This chrome extension solves Sudoku puzzles using cutting edge Sudoku-Solving-Technology. Puzzles can be solved with a single…
Was ist Sudoku-Solver?
Sudoku-Solver ist eine Chrome-Erweiterung, die von Direct Path Software entwickelt wurde, und ihr Hauptmerkmal ist "This chrome extension solves Sudoku puzzles using cutting edge Sudoku-Solving-Technology. Puzzles can be solved with a single…".
Erweiterungsscreenshots
Sudoku-Solver-Erweiterungs-CRX-Datei herunterladen
Laden Sie Sudoku-Solver-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
This chrome extension solves Sudoku puzzles using cutting edge Sudoku-Solving-Technology. Puzzles can be solved with a single click when visiting sites from the "supported sites" list. If a site is unsupported, the puzzle can be passed to the solver manually using the "manual input" option.
Grundlegende Informationen zur Erweiterung
Name | Sudoku-Solver |
ID | bfkcfpbpglejaaliaojkjahlmmdfjdfc |
Offizielle URL | https://chromewebstore.google.com/detail/sudoku-solver/bfkcfpbpglejaaliaojkjahlmmdfjdfc |
Beschreibung | This chrome extension solves Sudoku puzzles using cutting edge Sudoku-Solving-Technology. Puzzles can be solved with a single… |
Dateigröße | 1.82 MB |
Installationsanzahl | 31 |
Aktuelle Version | 1.0 |
Letztes Update | 2020-07-28 |
Veröffentlichungsdatum | 2020-07-28 |
Entwickler | Direct Path Software |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Sudoku-Solver", "version": "1.0", "manifest_version": 2, "content_scripts": [ { "matches": [ "https:\/\/www.websudoku.com\/*", "https:\/\/nine.websudoku.com\/*", "https:\/\/grid.websudoku.com\/*" ], "js": [ "websudoku.js" ], "all_frames": true }, { "matches": [ "https:\/\/sudoku.com\/*" ], "js": [ "sudoku.js" ] } ], "browser_action": { "default_title": "sudoku-solver", "default_popup": "popup.html" }, "background": { "scripts": [ "background.js" ] }, "icons": { "16": "icon16.png", "48": "icon48.png", "128": "icon128.png" } } |