Chess.com Voice Commentary (simplified)
Reading chess moves.
Cos'è Chess.com Voice Commentary (simplified)?
Chess.com Voice Commentary (simplified) è un'estensione di Chrome sviluppata da weizubc, e la sua funzione principale è "Reading chess moves.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Chess.com Voice Commentary (simplified)
Scarica i file di estensione Chess.com Voice Commentary (simplified) in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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. Informazioni di Base sull'Estensione
| Nome | |
| ID | mjmamkihdmfkogidombgdaepnikajemc |
| URL Ufficiale | https://chromewebstore.google.com/detail/chesscom-voice-commentary/mjmamkihdmfkogidombgdaepnikajemc |
| Descrizione | Reading chess moves. |
| Dimensione del File | 869 KB |
| Conteggio Installazioni | 52 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2023-02-23 |
| Data di Pubblicazione | 2023-02-22 |
| Valutazione | 5.00/5 Totale 3 Valutazioni |
| Sviluppatore | weizubc |
| [email protected] | |
| Tipo di Pagamento | free |
| Lingue Supportate | 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
} | |