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.”。
擴展截圖
下載Chess Digital Rain擴展crx文件
下載Chess Digital Rain擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
                        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                     擴展基本資訊
| 名稱 |   |  
| ID | bahgnadepjfgmbhaejlnpmjnkdemmgdd | 
| 官方網址 | 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\/*"
            ]
        }
    ]
}  |  |