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 مع الأصدقاء لتثبيت الامتدادات بسهولة.
تعليمات استخدام التمديد
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"
}
} | |