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
公式URL 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
Eメール [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"
    }
}