Sudoku-Solver

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

Vad är Sudoku-Solver?

Sudoku-Solver är en Chrome-tillägg utvecklad av Direct Path Software, och dess huvudfunktion är "This chrome extension solves Sudoku puzzles using cutting edge Sudoku-Solving-Technology. Puzzles can be solved with a single…".

Tilläggsskärmbilder

screenshot
screenshot

Ladda ner Sudoku-Solver-förlängningens CRX-fil

Ladda ner Sudoku-Solver-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.

Användarmanual för Tillägg

                        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.                    

Grundläggande Information om Tillägg

Namn Sudoku-Solver Sudoku-Solver
ID bfkcfpbpglejaaliaojkjahlmmdfjdfc
Officiell webbadress https://chromewebstore.google.com/detail/sudoku-solver/bfkcfpbpglejaaliaojkjahlmmdfjdfc
Beskrivning This chrome extension solves Sudoku puzzles using cutting edge Sudoku-Solving-Technology. Puzzles can be solved with a single…
Filstorlek 1.82 MB
Antal Installationer 31
Aktuell Version 1.0
Senast Uppdaterad 2020-07-28
Publiceringsdatum 2020-07-28
Utvecklare Direct Path Software
E-post [email protected]
Betalningssätt free
Stödda Språk 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"
    }
}