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 είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Uri Kalish, και η κύρια λειτουργία του είναι "An open-source Chrome extension for Chess.com adding Matrix-style digital rain to standard boards.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Chess Digital Rain
Λήψη αρχείων επέκτασης 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 |
Ηλεκτρονικό ταχυδρομείο | [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\/*" ] } ] } |