Lichess Speaker

Lichess clock and moves speaker

Lichess Speaker란 무엇입니까?

Lichess Speaker은(는) maciej.caderek에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Lichess clock and moves speaker"입니다.

확장 프로그램 스크린샷

screenshot

Lichess Speaker 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Lichess extension that uses voice synthesis to
* remind you of the remaining time during the chess game,
* remind you to move after specified time,
* start the countdown when you are very low on time,
* read the moves from the chess notation.

You can chose from many different voices (different languages)!
You can customize your alerts for each time control!
You can play blindfolded!                    

확장 프로그램 기본 정보

이름 Lichess Speaker Lichess Speaker
ID kpdengkjmlndpmnlllipgdgkpdlcgndi
공식 URL https://chrome.google.com/webstore/detail/lichess-speaker/kpdengkjmlndpmnlllipgdgkpdlcgndi
설명 Lichess clock and moves speaker
파일 크기 227 KB
설치 횟수 104
현재 버전 1.4
최근 업데이트 2021-09-14
출시 날짜 2021-09-06
평점 5.00/5 총 3 개의 평점
개발자 maciej.caderek
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/caderek/lichess-speaker
도움말 페이지 URL https://github.com/caderek/lichess-speaker/issues
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Lichess Speaker",
    "description": "Lichess clock and moves speaker",
    "version": "1.4",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "scripting"
    ],
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "\/images\/ico16.png",
            "32": "\/images\/ico32.png",
            "48": "\/images\/ico48.png",
            "96": "\/images\/ico96.png",
            "128": "\/images\/ico128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/lichess.org\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "icons": {
        "16": "\/images\/ico16.png",
        "32": "\/images\/ico32.png",
        "48": "\/images\/ico48.png",
        "96": "\/images\/ico96.png",
        "128": "\/images\/ico128.png"
    }
}