Chess.com Voice Commentary (simplified)
Reading chess moves.
What is Chess.com Voice Commentary (simplified)?
Chess.com Voice Commentary (simplified) is a Chrome extension developed by weizubc, and its main feature is "Reading chess moves.".
Extension Screenshots
Download Chess.com Voice Commentary (simplified) Extension CRX File
Download Chess.com Voice Commentary (simplified) extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Chess.com Voice Commentary (simplified) |
ID | mjmamkihdmfkogidombgdaepnikajemc |
Official URL | https://chromewebstore.google.com/detail/chesscom-voice-commentary/mjmamkihdmfkogidombgdaepnikajemc |
Description | Reading chess moves. |
File Size | 869 KB |
Installation Count | 52 |
Current Version | 1.0 |
Last Updated | 2023-02-23 |
Publish Date | 2023-02-22 |
Rating | 5.00/5 Total 3 Ratings |
Developer | weizubc |
[email protected] | |
Payment Type | free |
Supported Languages | 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 } |