Chess.com Voice Commentary (simplified)
Reading chess moves.
什麼是Chess.com Voice Commentary (simplified)?
Chess.com Voice Commentary (simplified)是由weizubc開發的Chrome擴展程式,該擴展的主要功能是“Reading chess moves.”。
擴展截圖
下載Chess.com Voice Commentary (simplified)擴展crx文件
下載Chess.com Voice Commentary (simplified)擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。
擴展使用說明
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.
擴展基本資訊
名稱 | Chess.com Voice Commentary (simplified) |
ID | mjmamkihdmfkogidombgdaepnikajemc |
官方網址 | https://chromewebstore.google.com/detail/chesscom-voice-commentary/mjmamkihdmfkogidombgdaepnikajemc |
簡介 | Reading chess moves. |
檔案大小 | 869 KB |
安裝次數 | 52 |
目前版本 | 1.0 |
更新時間 | 2023-02-23 |
上架時間 | 2023-02-22 |
評分 | 5.00/5 共 3 次評分 |
開發者 | weizubc |
電子郵箱 | [email protected] |
付費類型 | free |
支援的語言 | 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 } |