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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "An open-source Chrome extension for Chess.com adding Matrix-style digital rain to standard boards."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Chess Digital Rain एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        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 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\/*"
            ]
        }
    ]
}