Chess.com Voice Commentary (improved)

Hear chess moves and annotation spoken as they are played on Chess.com.

Cos'è Chess.com Voice Commentary (improved)?

Chess.com Voice Commentary (improved) è un'estensione di Chrome sviluppata da helloray504, e la sua funzione principale è "Hear chess moves and annotation spoken as they are played on Chess.com.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Chess.com Voice Commentary (improved)

Scarica i file di estensione Chess.com Voice Commentary (improved) 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

                        Note from the publisher: Hi everyone, as you might have found, the 
Chess.com Voice Commentary extension doesn't work and hasn't been updated for some time. I made some fixes to get it working, sharing it here so more people can benefit.

Have a suggestion? Send a pull request along! Source code available here: https://github.com/rctay/chesscom-voice-deux

Have an issue? https://github.com/rctay/chesscom-voice-deux/issues

I do not claim any copyright, all copyright (eg. code, sounds) belong to Chess.com.

Release history:
1.0.0: initial release
1.0.1: use store icon in extension as well                    

Informazioni di Base sull'Estensione

Nome Chess.com Voice Commentary (improved) Chess.com Voice Commentary (improved)
ID egkebhhogppokoapdkjmbddeagahoifp
URL Ufficiale https://chromewebstore.google.com/detail/chesscom-voice-commentary/egkebhhogppokoapdkjmbddeagahoifp
Descrizione Hear chess moves and annotation spoken as they are played on Chess.com.
Dimensione del File 16.16 MB
Conteggio Installazioni 570
Versione Corrente 1.0.1
Ultimo Aggiornamento 2021-05-31
Data di Pubblicazione 2021-05-25
Valutazione 4.00/5 Totale 5 Valutazioni
Sviluppatore helloray504
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/rctay/chesscom-voice-deux
URL della Pagina di Aiuto https://github.com/rctay/chesscom-voice-deux/issues
Lingue Supportate en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "background": {
        "page": "background.html",
        "persistent": false
    },
    "browser_action": {
        "default_icon": "icon-128.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "js": [
                "contentScript.bundle.js"
            ],
            "matches": [
                "https:\/\/www.chess.com\/*"
            ]
        }
    ],
    "content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
    "description": "Hear chess moves and annotation spoken as they are played on Chess.com.",
    "icons": {
        "128": "icon-128.png"
    },
    "manifest_version": 2,
    "name": "Chess.com Voice Commentary (improved)",
    "options_page": "options.html",
    "permissions": [
        "storage"
    ],
    "version": "1.0.1",
    "web_accessible_resources": [
        "sounds\/*"
    ]
}