Sudoku Scanner

A chrome extension that can scan and solve sudoku puzzles

Sudoku Scanner क्या है?

Sudoku Scanner bubloo7 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "A chrome extension that can scan and solve sudoku puzzles"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Sudoku Scanner एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        This chrome extension will let you scan and solve sudoku boards quickly and easily! It works on a number of websites like sudoku.com, usdoku.com, NY times Sudoku, and much much more! It can even work for images! Start by pressing the scan button to scan your screen for a sudoku board. You can then press the show button to show the answers! You can also use your mouse and/or keyboard to select a square and fill it in manually. Download the extension and get started today!

The way the extension works is by taking a screenshot of the users current window, identifying where the board is in the user's screen, and then using OCR to read the board. As such, the user must consent to making the contents of their screen be available. The screenshot will only be taken when the user consents by pressing the scan button in the chrome extension and will never run in the background or when the user is unaware of it. The data will never be stored or shared in any shape or form. Privacy is incredibly important and we promise that the only use of the scan feature is to find and identify the sudoku board automatically. 

The source code for the project can be found on github here: https://github.com/bubloo7/Sudoku-Scan                    

एक्सटेंशन की मूल जानकारी

नाम Sudoku Scanner Sudoku Scanner
ID pgiimbpbjcpmibecjiajmbfjofojofjf
आधिकारिक URL https://chromewebstore.google.com/detail/sudoku-scanner/pgiimbpbjcpmibecjiajmbfjofojofjf
विवरण A chrome extension that can scan and solve sudoku puzzles
फ़ाइल का आकार 172 KB
स्थापना संख्या 50
वर्तमान संस्करण 1.0.9
अंतिम अपडेट 2022-10-18
प्रकाशन तिथि 2022-09-27
रेटिंग 5.00/5 कुल 4 रेटिंग्स
डेवलपर bubloo7
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/bubloo7/Sudoku-Scan
सहायता पृष्ठ URL https://github.com/bubloo7
गोपनीयता नीति पृष्ठ URL https://docs.google.com/document/d/1GHeWUY0IMWh7iPecgGg4MAAJn6BU1JrkL-pNxBrHpwU/edit
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "description": "A chrome extension that can scan and solve sudoku puzzles",
    "version": "1.0.9",
    "manifest_version": 3,
    "name": "Sudoku Scanner",
    "background": {
        "service_worker": "background.bundle.js"
    },
    "action": {
        "default_popup": "popup.html",
        "default_icon": "icon-128.png"
    },
    "icons": {
        "128": "icon-128.png"
    },
    "permissions": [
        "storage"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*",
                ""
            ],
            "js": [
                "contentScript.bundle.js"
            ],
            "css": [
                "content.styles.css"
            ]
        }
    ],
    "devtools_page": "devtools.html",
    "web_accessible_resources": [
        {
            "resources": [
                "content.styles.css",
                "icon-128.png",
                "icon-128.png"
            ],
            "matches": []
        }
    ]
}