Chess Move Say
Reads chess move names aloud after moves are played.
Cos'è Chess Move Say?
Chess Move Say è un'estensione di Chrome sviluppata da Advait Shinde, e la sua funzione principale è "Reads chess move names aloud after moves are played.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione Chess Move Say
Scarica i file di estensione Chess Move Say in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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 Informazioni di Base sull'Estensione
| Nome | |
| ID | bffngaamkkngdgfojfpahbhmfodpbbho |
| URL Ufficiale | https://chrome.google.com/webstore/detail/chess-move-say/bffngaamkkngdgfojfpahbhmfodpbbho |
| Descrizione | Reads chess move names aloud after moves are played. |
| Dimensione del File | 1.73 MB |
| Conteggio Installazioni | 165 |
| Versione Corrente | 1.0 |
| Ultimo Aggiornamento | 2019-11-22 |
| Data di Pubblicazione | 2019-11-22 |
| Valutazione | 4.00/5 Totale 1 Valutazioni |
| Sviluppatore | Advait Shinde |
| [email protected] | |
| Tipo di Pagamento | free |
| Sito Web dell'Estensione | https://gitlab.com/advait3000/chess-move-say |
| URL della Pagina di Aiuto | https://gitlab.com/advait3000/chess-move-say/issues |
| Lingue Supportate | 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"
]
} | |