Sudoku-Solver

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

什么是Sudoku-Solver?

Sudoku-Solver是由Direct Path Software开发的Chrome扩展程序,该扩展的主要功能是“This chrome extension solves Sudoku puzzles using cutting edge Sudoku-Solving-Technology. Puzzles can be solved with a single…”。

扩展截图

screenshot
screenshot

下载Sudoku-Solver扩展crx文件

下载Sudoku-Solver扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 Sudoku-Solver Sudoku-Solver
ID bfkcfpbpglejaaliaojkjahlmmdfjdfc
官方URL https://chromewebstore.google.com/detail/sudoku-solver/bfkcfpbpglejaaliaojkjahlmmdfjdfc
简介 This chrome extension solves Sudoku puzzles using cutting edge Sudoku-Solving-Technology. Puzzles can be solved with a single…
文件大小 1.82 MB
安装次数 31
当前版本 1.0
更新时间 2020-07-28
上架时间 2020-07-28
开发者 Direct Path Software
电子邮箱 [email protected]
付费类型 free
支持的语言 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"
    }
}