Sudoku Solver

Extention that solves sudokus.

What is Sudoku Solver?

Sudoku Solver is a Chrome extension developed by https://nurmi.dev, and its main feature is "Extention that solves sudokus.".

Extension Screenshots

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

                        Use this handy extension to solve sudokus. You can type your own puzzle or import/export sudoku from site http://www.free-sudoku.com.                    

Extension Basic Information

Name Sudoku Solver Sudoku Solver
ID elhpkohfgpfdgkboabmhllkihpcccaka
Official URL https://chromewebstore.google.com/detail/sudoku-solver/elhpkohfgpfdgkboabmhllkihpcccaka
Description Extention that solves sudokus.
File Size 21.14 KB
Installation Count 76
Current Version 1.0.0
Last Updated 2019-10-11
Publish Date 2019-10-10
Developer https://nurmi.dev
Email [email protected]
Payment Type free
Supported Languages en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Sudoku Solver",
    "description": "Extention that solves sudokus.",
    "version": "1.0.0",
    "icons": {
        "128": "icon_128.png"
    },
    "permissions": [
        "activeTab",
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                ""
            ],
            "js": [
                "content.js"
            ],
            "run_at": "document_end"
        }
    ],
    "background": {
        "scripts": []
    },
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    }
}