Chess You Can Hear

Adds sound effects that reflect the current chess game being played on lichess.org

Chess You Can Hear란 무엇입니까?

Chess You Can Hear은(는) Unknown에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Adds sound effects that reflect the current chess game being played on lichess.org"입니다.

확장 프로그램 스크린샷

Chess You Can Hear 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Chess You Can Hear is a program I developed so that anybody could enjoy the sweet sounds of their chess games online. As you play a game of online chess on lichess.com, this chrome extension will follow the moves of the game, and in real-time, play chords and notes that I recorded to reflect the mood of each individual move. The code that I wrote to create this applet can be found at this link: https://github.com/AlexMedoff/ChromeExtensionChessSound

Please understand that this is the first build of the applet, so there are definitely some bugs and some ways the app can be improved upon. Enjoy!

Thanks,
Alex Medoff                    

확장 프로그램 기본 정보

이름 Chess You Can Hear Chess You Can Hear
ID gdgdlkjidhiinbjijnklmhbdiiomgdkn
공식 URL https://chromewebstore.google.com/detail/chess-you-can-hear/gdgdlkjidhiinbjijnklmhbdiiomgdkn
설명 Adds sound effects that reflect the current chess game being played on lichess.org
파일 크기 1.55 MB
설치 횟수 174
현재 버전 1.0
최근 업데이트 2018-10-11
출시 날짜 2018-10-11
평점 5.00/5 총 2 개의 평점
개발자 Unknown
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/AlexMedoff/ChromeExtensionChessSound
도움말 페이지 URL https://github.com/AlexMedoff/ChromeExtensionChessSound
지원되는 언어 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chess You Can Hear",
    "version": "1.0",
    "description": "Adds sound effects that reflect the current chess game being played on lichess.org",
    "browser_action": {
        "default_icon": "chess_icon.png",
        "default_title": "Chess You Can Hear"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.lichess.org\/*",
                "http:\/\/*.lichess.org\/*"
            ],
            "js": [
                "sounds.js",
                "player.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "*.mp3"
    ]
}