Chess Move Say
Reads chess move names aloud after moves are played.
Was ist Chess Move Say?
Chess Move Say ist eine Chrome-Erweiterung, die von Advait Shinde entwickelt wurde, und ihr Hauptmerkmal ist "Reads chess move names aloud after moves are played.".
Erweiterungsscreenshots
Chess Move Say-Erweiterungs-CRX-Datei herunterladen
Laden Sie Chess Move Say-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
Chess Move Say
==============
Chess Move Say will read aloud chess moves played on Lichess.org.
Chess Move Say is open source. Please contribute at:
https://gitlab.com/advait3000/chess-move-say Grundlegende Informationen zur Erweiterung
| Name | |
| ID | bffngaamkkngdgfojfpahbhmfodpbbho |
| Offizielle URL | https://chrome.google.com/webstore/detail/chess-move-say/bffngaamkkngdgfojfpahbhmfodpbbho |
| Beschreibung | Reads chess move names aloud after moves are played. |
| Dateigröße | 1.73 MB |
| Installationsanzahl | 165 |
| Aktuelle Version | 1.0 |
| Letztes Update | 2019-11-22 |
| Veröffentlichungsdatum | 2019-11-22 |
| Bewertung | 4.00/5 Insgesamt 1 Bewertungen |
| Entwickler | Advait Shinde |
| [email protected] | |
| Zahlungsart | free |
| Erweiterungswebsite | https://gitlab.com/advait3000/chess-move-say |
| Hilfeseite URL | https://gitlab.com/advait3000/chess-move-say/issues |
| Unterstützte Sprachen | en |
| manifest.json | |
{
"update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
"description": "Reads chess move names aloud after moves are played.",
"version": "1.0",
"name": "Chess Move Say",
"background": {
"scripts": [
"background.bundle.js"
],
"persistent": false
},
"icons": {
"32": "icon-32.png",
"64": "icon-64.png",
"128": "icon-128.png",
"256": "icon-256.png",
"512": "icon-512.png"
},
"browser_action": {
"default_icon": {
"32": "icon-32.png",
"64": "icon-64.png",
"128": "icon-128.png",
"256": "icon-256.png",
"512": "icon-512.png"
}
},
"permissions": [
"declarativeContent",
"storage",
"https:\/\/lichess.org\/*"
],
"manifest_version": 2,
"content_security_policy": "script-src 'self' 'unsafe-eval'; object-src 'self'",
"content_scripts": [
{
"matches": [
"https:\/\/lichess.org\/*"
],
"run_at": "document_end",
"js": [
"cs.bundle.js"
]
}
],
"web_accessible_resources": [
"direct_script.bundle.js",
"*.wav"
]
} | |