GoEN Sudoku Shortcuts

Play Sudoku.com online with keyboard shortcuts

Was ist GoEN Sudoku Shortcuts?

GoEN Sudoku Shortcuts ist eine Chrome-Erweiterung, die von https://goenlab.com entwickelt wurde, und ihr Hauptmerkmal ist "Play Sudoku.com online with keyboard shortcuts".

Erweiterungsscreenshots

screenshot

GoEN Sudoku Shortcuts-Erweiterungs-CRX-Datei herunterladen

Laden Sie GoEN Sudoku Shortcuts-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Play Sudoku easier and faster with your keyboard! Could Sudoku.com become the best Sudoku website with keyboard shortcuts for pencil marks?

Shortcuts:
- Hold Shift and press number keys: to place a number as a pencil note (use Shift shortcut for pencil marks)
- Key ` (the key is on the left of key number 1): to  toggle pencil marks on and off
- Arrow keys (↑ ↓ → ←): to move the current cursor (active cell).
- Number keys (1 to 9): to place a number.
- Key - (underscore): to Undo (also use Ctrl + Z)
- Key = (equal): to display Hint
- Key Backspace: to clear (Erease)                    

Grundlegende Informationen zur Erweiterung

Name GoEN Sudoku Shortcuts GoEN Sudoku Shortcuts
ID hoadndnimhpnempojchlgpcolfjpljhi
Offizielle URL https://chromewebstore.google.com/detail/goen-sudoku-shortcuts/hoadndnimhpnempojchlgpcolfjpljhi
Beschreibung Play Sudoku.com online with keyboard shortcuts
Dateigröße 26.74 KB
Installationsanzahl 488
Aktuelle Version 1.0.3
Letztes Update 2024-02-28
Veröffentlichungsdatum 2023-04-06
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler https://goenlab.com
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "GoEN Sudoku Shortcuts",
    "description": "Play Sudoku.com online with keyboard shortcuts",
    "version": "1.0.3",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "tabs"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.sudoku.com\/*"
            ],
            "js": [
                ".\/content-scripts.js"
            ],
            "css": [
                ".\/num.css"
            ]
        }
    ],
    "action": {
        "default_popup": "\/popup.html",
        "default_icon": {
            "128": "\/images\/doku-icon128.png"
        }
    },
    "icons": {
        "128": "\/images\/doku-icon128.png"
    }
}