GoEN Sudoku Shortcuts

Play Sudoku.com online with keyboard shortcuts

GoEN Sudoku Shortcuts란 무엇입니까?

GoEN Sudoku Shortcuts은(는) https://goenlab.com에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Play Sudoku.com online with keyboard shortcuts"입니다.

확장 프로그램 스크린샷

screenshot

GoEN Sudoku Shortcuts 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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 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"
    }
}