Sudoku-Solver

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

O que é Sudoku-Solver?

Sudoku-Solver é uma extensão do Chrome desenvolvida por Direct Path Software, e sua principal característica é "This chrome extension solves Sudoku puzzles using cutting edge Sudoku-Solving-Technology. Puzzles can be solved with a single…".

Capturas de Tela da Extensão

screenshot
screenshot

Baixar o arquivo CRX da Extensão Sudoku-Solver

Baixe arquivos de extensão Sudoku-Solver no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Sudoku-Solver Sudoku-Solver
ID bfkcfpbpglejaaliaojkjahlmmdfjdfc
URL Oficial https://chromewebstore.google.com/detail/sudoku-solver/bfkcfpbpglejaaliaojkjahlmmdfjdfc
Descrição This chrome extension solves Sudoku puzzles using cutting edge Sudoku-Solving-Technology. Puzzles can be solved with a single…
Tamanho do Arquivo 1.82 MB
Contagem de Instalações 31
Versão Atual 1.0
Última Atualização 2020-07-28
Data de Publicação 2020-07-28
Desenvolvedor Direct Path Software
Email [email protected]
Tipo de Pagamento free
Idiomas Suportados 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"
    }
}