Sudoku Solver

Extention that solves sudokus.

Cos'è Sudoku Solver?

Sudoku Solver è un'estensione di Chrome sviluppata da https://nurmi.dev, e la sua funzione principale è "Extention that solves sudokus.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Sudoku Solver

Scarica i file di estensione Sudoku Solver in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

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

Informazioni di Base sull'Estensione

Nome Sudoku Solver Sudoku Solver
ID elhpkohfgpfdgkboabmhllkihpcccaka
URL Ufficiale https://chromewebstore.google.com/detail/sudoku-solver/elhpkohfgpfdgkboabmhllkihpcccaka
Descrizione Extention that solves sudokus.
Dimensione del File 21.14 KB
Conteggio Installazioni 76
Versione Corrente 1.0.0
Ultimo Aggiornamento 2019-10-11
Data di Pubblicazione 2019-10-10
Sviluppatore https://nurmi.dev
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}