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 เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Direct Path Software และคุณลักษณะหลักของมันคือ "This chrome extension solves Sudoku puzzles using cutting edge Sudoku-Solving-Technology. Puzzles can be solved with a single…"
ภาพหน้าจอของส่วนขยาย
ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Sudoku-Solver
ดาวน์โหลดไฟล์ส่วนขยาย 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. ข้อมูลพื้นฐานของส่วนขยาย
| ชื่อ | |
| 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 |
| อีเมล | [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"
}
} | |