Chess Move Say
Reads chess move names aloud after moves are played.
What is Chess Move Say?
Chess Move Say is a Chrome extension developed by Advait Shinde, and its main feature is "Reads chess move names aloud after moves are played.".
Extension Screenshots
Download Chess Move Say Extension CRX File
Download Chess Move Say 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
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 Extension Basic Information
| Name | |
| ID | bffngaamkkngdgfojfpahbhmfodpbbho |
| Official URL | https://chrome.google.com/webstore/detail/chess-move-say/bffngaamkkngdgfojfpahbhmfodpbbho |
| Description | Reads chess move names aloud after moves are played. |
| File Size | 1.73 MB |
| Installation Count | 165 |
| Current Version | 1.0 |
| Last Updated | 2019-11-22 |
| Publish Date | 2019-11-22 |
| Rating | 4.00/5 Total 1 Ratings |
| Developer | Advait Shinde |
| [email protected] | |
| Payment Type | free |
| Extension Website | https://gitlab.com/advait3000/chess-move-say |
| Help Page URL | https://gitlab.com/advait3000/chess-move-say/issues |
| Supported Languages | 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"
]
} | |