Chess Digital Rain
An open-source Chrome extension for Chess.com adding Matrix-style digital rain to standard boards.
Co to jest Chess Digital Rain?
Chess Digital Rain to rozszerzenie Chrome opracowane przez Uri Kalish, a jego główną funkcją jest „An open-source Chrome extension for Chess.com adding Matrix-style digital rain to standard boards.”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Chess Digital Rain
Pobierz pliki rozszerzeń Chess Digital Rain w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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 Podstawowe informacje o rozszerzeniu
| Nazwa | |
| ID | bahgnadepjfgmbhaejlnpmjnkdemmgdd |
| Oficjalny URL | https://chromewebstore.google.com/detail/chess-digital-rain/bahgnadepjfgmbhaejlnpmjnkdemmgdd |
| Opis | An open-source Chrome extension for Chess.com adding Matrix-style digital rain to standard boards. |
| Rozmiar pliku | 592 KB |
| Liczba instalacji | 38 |
| Aktualna Wersja | 1.0.2 |
| Ostatnia Aktualizacja | 2022-03-08 |
| Data Publikacji | 2021-04-05 |
| Ocena | 5.00/5 Łącznie 1 Oceny |
| Deweloper | Uri Kalish |
| [email protected] | |
| Typ Płatności | free |
| Strona Rozszerzenia | https://github.com/chess-digital-rain/chess-digital-rain |
| Adres URL Strony Pomocy | https://github.com/chess-digital-rain/chess-digital-rain/issues |
| Obsługiwane Języki | 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\/*"
]
}
]
} | |