Sudoku Solver

Extention that solves sudokus.

什麼是Sudoku Solver?

Sudoku Solver是由https://nurmi.dev開發的Chrome擴展程式,該擴展的主要功能是“Extention that solves sudokus.”。

擴展截圖

screenshot

下載Sudoku Solver擴展crx文件

下載Sudoku Solver擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

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

擴展基本資訊

名稱 Sudoku Solver Sudoku Solver
ID elhpkohfgpfdgkboabmhllkihpcccaka
官方網址 https://chromewebstore.google.com/detail/sudoku-solver/elhpkohfgpfdgkboabmhllkihpcccaka
簡介 Extention that solves sudokus.
檔案大小 21.14 KB
安裝次數 76
目前版本 1.0.0
更新時間 2019-10-11
上架時間 2019-10-10
開發者 https://nurmi.dev
電子郵箱 [email protected]
付費類型 free
支援的語言 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"
    }
}