Sudoku Solver

Extention that solves sudokus.

Sudoku Solver là gì?

Sudoku Solver là một tiện ích mở rộng Chrome được phát triển bởi https://nurmi.dev, và tính năng chính của nó là "Extention that solves sudokus.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Sudoku Solver

Tải xuống các tệp mở rộng Sudoku Solver dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

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

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Sudoku Solver Sudoku Solver
ID elhpkohfgpfdgkboabmhllkihpcccaka
URL Chính Thức https://chromewebstore.google.com/detail/sudoku-solver/elhpkohfgpfdgkboabmhllkihpcccaka
Mô tả Extention that solves sudokus.
Kích Thước Tệp 21.14 KB
Số Lần Cài Đặt 76
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2019-10-11
Ngày Phát Hành 2019-10-10
Nhà Phát Triển https://nurmi.dev
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}