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
拡張機能の基本情報
名前 | 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 |
Eメール | [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\/*" ] } ] } |