Chess.com Voice Commentary (simplified)
Reading chess moves.
Vad är Chess.com Voice Commentary (simplified)?
Chess.com Voice Commentary (simplified) är en Chrome-tillägg utvecklad av weizubc, och dess huvudfunktion är "Reading chess moves.".
Tilläggsskärmbilder
Ladda ner Chess.com Voice Commentary (simplified)-förlängningens CRX-fil
Ladda ner Chess.com Voice Commentary (simplified)-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | mjmamkihdmfkogidombgdaepnikajemc |
| Officiell webbadress | https://chromewebstore.google.com/detail/chesscom-voice-commentary/mjmamkihdmfkogidombgdaepnikajemc |
| Beskrivning | Reading chess moves. |
| Filstorlek | 869 KB |
| Antal Installationer | 52 |
| Aktuell Version | 1.0 |
| Senast Uppdaterad | 2023-02-23 |
| Publiceringsdatum | 2023-02-22 |
| Betyg | 5.00/5 Totalt 3 Betyg |
| Utvecklare | weizubc |
| E-post | [email protected] |
| Betalningssätt | free |
| Stödda Språk | 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
} | |