Chess.com Voice Commentary (simplified)

Reading chess moves.

Was ist Chess.com Voice Commentary (simplified)?

Chess.com Voice Commentary (simplified) ist eine Chrome-Erweiterung, die von weizubc entwickelt wurde, und ihr Hauptmerkmal ist "Reading chess moves.".

Erweiterungsscreenshots

screenshot

Chess.com Voice Commentary (simplified)-Erweiterungs-CRX-Datei herunterladen

Laden Sie Chess.com Voice Commentary (simplified)-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

                        Previous voice commentary extensions for chess.com have broken for some reason. This is a simplified version that only reads new moves from 'board-layout-sidebar', so it is less likely to break in future, and easier to fix when it does. Source code at https://github.com/renshenw/chesscom-voice-simplified.

"Piece Notation" in board settings must be "Text". Works for both human and computer opponents. 

All copyrights still go to chess.com.                    

Grundlegende Informationen zur Erweiterung

Name Chess.com Voice Commentary (simplified) Chess.com Voice Commentary (simplified)
ID mjmamkihdmfkogidombgdaepnikajemc
Offizielle URL https://chromewebstore.google.com/detail/chesscom-voice-commentary/mjmamkihdmfkogidombgdaepnikajemc
Beschreibung Reading chess moves.
Dateigröße 869 KB
Installationsanzahl 52
Aktuelle Version 1.0
Letztes Update 2023-02-23
Veröffentlichungsdatum 2023-02-22
Bewertung 5.00/5 Insgesamt 3 Bewertungen
Entwickler weizubc
E-Mail [email protected]
Zahlungsart free
Unterstützte Sprachen en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Chess.com Voice Commentary (simplified)",
    "version": "1.0",
    "background": {
        "service_worker": "background.js"
    },
    "description": "Reading chess moves.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.chess.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "icons": {
        "128": "icon-128.png"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "mp3\/*"
            ],
            "matches": [
                "https:\/\/www.chess.com\/*"
            ]
        }
    ],
    "manifest_version": 3
}