GoEN Sudoku Shortcuts
Play Sudoku.com online with keyboard shortcuts
Τι είναι το GoEN Sudoku Shortcuts;
Το GoEN Sudoku Shortcuts είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον https://goenlab.com, και η κύρια λειτουργία του είναι "Play Sudoku.com online with keyboard shortcuts".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης GoEN Sudoku Shortcuts
Λήψη αρχείων επέκτασης GoEN Sudoku Shortcuts σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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)
Βασικές Πληροφορίες Επέκτασης
Όνομα | GoEN Sudoku Shortcuts |
ID | hoadndnimhpnempojchlgpcolfjpljhi |
Επίσημο URL | https://chromewebstore.google.com/detail/goen-sudoku-shortcuts/hoadndnimhpnempojchlgpcolfjpljhi |
Περιγραφή | Play Sudoku.com online with keyboard shortcuts |
Μέγεθος Αρχείου | 26.74 KB |
Αριθμός Εγκαταστάσεων | 488 |
Τρέχουσα Έκδοση | 1.0.3 |
Τελευταία Ενημέρωση | 2024-02-28 |
Ημερομηνία Δημοσίευσης | 2023-04-06 |
Αξιολόγηση | 5.00/5 Συνολικά 2 Αξιολογήσεις |
Προγραμματιστής | https://goenlab.com |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Υποστηριζόμενες Γλώσσες | 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" } } |