Sudoku-Solver
This chrome extension solves Sudoku puzzles using cutting edge Sudoku-Solving-Technology. Puzzles can be solved with a single…
Sudoku-Solverとは何ですか?
Sudoku-SolverはDirect Path Softwareによって開発されたChromeの拡張機能で、その主な機能は「This chrome extension solves Sudoku puzzles using cutting edge Sudoku-Solving-Technology. Puzzles can be solved with a single…」です。
拡張機能のスクリーンショット
Sudoku-Solver拡張機能のCRXファイルをダウンロード
Sudoku-Solver拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。
拡張機能の使用方法
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.
拡張機能の基本情報
名前 | Sudoku-Solver |
ID | bfkcfpbpglejaaliaojkjahlmmdfjdfc |
公式URL | https://chromewebstore.google.com/detail/sudoku-solver/bfkcfpbpglejaaliaojkjahlmmdfjdfc |
説明 | This chrome extension solves Sudoku puzzles using cutting edge Sudoku-Solving-Technology. Puzzles can be solved with a single… |
ファイルサイズ | 1.82 MB |
インストール数 | 31 |
現在のバージョン | 1.0 |
最終更新日 | 2020-07-28 |
公開日 | 2020-07-28 |
開発者 | Direct Path Software |
Eメール | [email protected] |
支払い方法 | free |
対応言語 | 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" } } |