Sudoku-Solver

This chrome extension solves Sudoku puzzles using cutting edge Sudoku-Solving-Technology. Puzzles can be solved with a single…

What is Sudoku-Solver?

Sudoku-Solver is a Chrome extension developed by Direct Path Software, and its main feature is "This chrome extension solves Sudoku puzzles using cutting edge Sudoku-Solving-Technology. Puzzles can be solved with a single…".

Extension Screenshots

screenshot
screenshot

Download Sudoku-Solver Extension CRX File

Download Sudoku-Solver extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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.                    

Extension Basic Information

Name Sudoku-Solver Sudoku-Solver
ID bfkcfpbpglejaaliaojkjahlmmdfjdfc
Official URL https://chromewebstore.google.com/detail/sudoku-solver/bfkcfpbpglejaaliaojkjahlmmdfjdfc
Description This chrome extension solves Sudoku puzzles using cutting edge Sudoku-Solving-Technology. Puzzles can be solved with a single…
File Size 1.82 MB
Installation Count 31
Current Version 1.0
Last Updated 2020-07-28
Publish Date 2020-07-28
Developer Direct Path Software
Email [email protected]
Payment Type free
Supported Languages 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"
    }
}