Sudoku-Solver

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

Cos'è Sudoku-Solver?

Sudoku-Solver è un'estensione di Chrome sviluppata da Direct Path Software, e la sua funzione principale è "This chrome extension solves Sudoku puzzles using cutting edge Sudoku-Solving-Technology. Puzzles can be solved with a single…".

Screenshot dell'Estensione

screenshot
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

                        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.                    

Informazioni di Base sull'Estensione

Nome Sudoku-Solver Sudoku-Solver
ID bfkcfpbpglejaaliaojkjahlmmdfjdfc
URL Ufficiale https://chromewebstore.google.com/detail/sudoku-solver/bfkcfpbpglejaaliaojkjahlmmdfjdfc
Descrizione This chrome extension solves Sudoku puzzles using cutting edge Sudoku-Solving-Technology. Puzzles can be solved with a single…
Dimensione del File 1.82 MB
Conteggio Installazioni 31
Versione Corrente 1.0
Ultimo Aggiornamento 2020-07-28
Data di Pubblicazione 2020-07-28
Sviluppatore Direct Path Software
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
    }
}