Chess You Can Hear

Adds sound effects that reflect the current chess game being played on lichess.org

Was ist Chess You Can Hear?

Chess You Can Hear ist eine Chrome-Erweiterung, die von Unknown entwickelt wurde, und ihr Hauptmerkmal ist "Adds sound effects that reflect the current chess game being played on lichess.org".

Erweiterungsscreenshots

Chess You Can Hear-Erweiterungs-CRX-Datei herunterladen

Laden Sie Chess You Can Hear-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        Chess You Can Hear is a program I developed so that anybody could enjoy the sweet sounds of their chess games online. As you play a game of online chess on lichess.com, this chrome extension will follow the moves of the game, and in real-time, play chords and notes that I recorded to reflect the mood of each individual move. The code that I wrote to create this applet can be found at this link: https://github.com/AlexMedoff/ChromeExtensionChessSound

Please understand that this is the first build of the applet, so there are definitely some bugs and some ways the app can be improved upon. Enjoy!

Thanks,
Alex Medoff                    

Grundlegende Informationen zur Erweiterung

Name Chess You Can Hear Chess You Can Hear
ID gdgdlkjidhiinbjijnklmhbdiiomgdkn
Offizielle URL https://chromewebstore.google.com/detail/chess-you-can-hear/gdgdlkjidhiinbjijnklmhbdiiomgdkn
Beschreibung Adds sound effects that reflect the current chess game being played on lichess.org
Dateigröße 1.55 MB
Installationsanzahl 174
Aktuelle Version 1.0
Letztes Update 2018-10-11
Veröffentlichungsdatum 2018-10-11
Bewertung 5.00/5 Insgesamt 2 Bewertungen
Entwickler Unknown
Zahlungsart free
Erweiterungswebsite https://github.com/AlexMedoff/ChromeExtensionChessSound
Hilfeseite URL https://github.com/AlexMedoff/ChromeExtensionChessSound
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Chess You Can Hear",
    "version": "1.0",
    "description": "Adds sound effects that reflect the current chess game being played on lichess.org",
    "browser_action": {
        "default_icon": "chess_icon.png",
        "default_title": "Chess You Can Hear"
    },
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/*.lichess.org\/*",
                "http:\/\/*.lichess.org\/*"
            ],
            "js": [
                "sounds.js",
                "player.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "*.mp3"
    ]
}