Chess.com Voice Commentary (improved)
Hear chess moves and annotation spoken as they are played on Chess.com.
¿Qué es Chess.com Voice Commentary (improved)?
Chess.com Voice Commentary (improved) es una extensión de Chrome desarrollada por helloray504, y su función principal es "Hear chess moves and annotation spoken as they are played on Chess.com.".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Chess.com Voice Commentary (improved)
Descarga archivos de extensión Chess.com Voice Commentary (improved) en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
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
Información Básica de la Extensión
Nombre | Chess.com Voice Commentary (improved) |
ID | egkebhhogppokoapdkjmbddeagahoifp |
URL Oficial | https://chromewebstore.google.com/detail/chesscom-voice-commentary/egkebhhogppokoapdkjmbddeagahoifp |
Descripción | Hear chess moves and annotation spoken as they are played on Chess.com. |
Tamaño del Archivo | 16.16 MB |
Cantidad de Instalaciones | 570 |
Versión Actual | 1.0.1 |
Última Actualización | 2021-05-31 |
Fecha de Publicación | 2021-05-25 |
Calificación | 4.00/5 Total de 5 Calificaciones |
Desarrollador | helloray504 |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Sitio Web de la Extensión | https://github.com/rctay/chesscom-voice-deux |
URL de la Página de Ayuda | https://github.com/rctay/chesscom-voice-deux/issues |
Idiomas Soportados | 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\/*" ] } |