Chess Digital Rain

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

Chess Digital Rain là gì?

Chess Digital Rain là một tiện ích mở rộng Chrome được phát triển bởi Uri Kalish, và tính năng chính của nó là "An open-source Chrome extension for Chess.com adding Matrix-style digital rain to standard boards.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Chess Digital Rain

Tải xuống các tệp mở rộng Chess Digital Rain dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Chess Digital Rain Chess Digital Rain
ID bahgnadepjfgmbhaejlnpmjnkdemmgdd
URL Chính Thức https://chromewebstore.google.com/detail/chess-digital-rain/bahgnadepjfgmbhaejlnpmjnkdemmgdd
Mô tả An open-source Chrome extension for Chess.com adding Matrix-style digital rain to standard boards.
Kích Thước Tệp 592 KB
Số Lần Cài Đặt 38
Phiên Bản Hiện Tại 1.0.2
Cập Nhật Lần Cuối 2022-03-08
Ngày Phát Hành 2021-04-05
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Uri Kalish
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/chess-digital-rain/chess-digital-rain
URL Trang Trợ Giúp https://github.com/chess-digital-rain/chess-digital-rain/issues
Ngôn Ngữ Được Hỗ Trợ 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\/*"
            ]
        }
    ]
}