Chess Digital Rain

An open-source Chrome extension for Chess.com adding Matrix-style digital rain to standard boards.

Chess Digital Rain란 무엇입니까?

Chess Digital Rain은(는) Uri Kalish에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "An open-source Chrome extension for Chess.com adding Matrix-style digital rain to standard boards."입니다.

확장 프로그램 스크린샷

screenshot

Chess Digital Rain 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This tiny open-source Chrome extension changes the appearance of standard boards on Chess.com website. Note that this is just a UI transformer, so it does NOT violate any fair play policy.

Features:
Replace the standard board with Matrix-style digital rain.
Change piece icons to letters.
Display move notation on the board.

Source Code:
https://github.com/chess-digital-rain/chess-digital-rain

Requests or Issues:
https://github.com/chess-digital-rain/chess-digital-rain/issues                    

확장 프로그램 기본 정보

이름 Chess Digital Rain Chess Digital Rain
ID bahgnadepjfgmbhaejlnpmjnkdemmgdd
공식 URL https://chromewebstore.google.com/detail/chess-digital-rain/bahgnadepjfgmbhaejlnpmjnkdemmgdd
설명 An open-source Chrome extension for Chess.com adding Matrix-style digital rain to standard boards.
파일 크기 592 KB
설치 횟수 38
현재 버전 1.0.2
최근 업데이트 2022-03-08
출시 날짜 2021-04-05
평점 5.00/5 총 1 개의 평점
개발자 Uri Kalish
이메일 [email protected]
결제 유형 free
확장 프로그램 웹 사이트 https://github.com/chess-digital-rain/chess-digital-rain
도움말 페이지 URL https://github.com/chess-digital-rain/chess-digital-rain/issues
지원되는 언어 en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "1.0.2",
    "name": "Chess Digital Rain",
    "short_name": "Chess Digital Rain",
    "description": "An open-source Chrome extension for Chess.com adding Matrix-style digital rain to standard boards.",
    "icons": {
        "48": "img\/icon48.png",
        "96": "img\/icon96.png",
        "128": "img\/icon128.png"
    },
    "action": {
        "default_title": "Chess Digital Rain",
        "default_icon": "img\/icon96.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.chess.com\/play\/computer",
                "https:\/\/www.chess.com\/play\/online",
                "https:\/\/www.chess.com\/play\/online\/friend",
                "https:\/\/www.chess.com\/game\/live\/*"
            ],
            "css": [
                "css\/cdr.css"
            ],
            "js": [
                "src\/cdr.js"
            ]
        }
    ],
    "web_accessible_resources": [
        {
            "resources": [
                "font\/*",
                "img\/*"
            ],
            "matches": [
                "https:\/\/www.chess.com\/*"
            ]
        }
    ]
}