Chess Move Say
Reads chess move names aloud after moves are played.
Hvad er Chess Move Say?
Chess Move Say er en Chrome-udvidelse udviklet af Advait Shinde, og dens hovedfunktion er "Reads chess move names aloud after moves are played.".
Udvidelsesskærmbilleder
Download Chess Move Say-udvidelses-CRX-fil
Download Chess Move Say-udvidelsesfiler i crx-format, installer Chrome-udvidelser manuelt i browseren eller del crx-filer med venner for nemt at installere Chrome-udvidelser.
Brugsanvisning til Udvidelsen
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
Grundlæggende oplysninger om udvidelsen
Navn | |
ID | bffngaamkkngdgfojfpahbhmfodpbbho |
Officiel URL | https://chrome.google.com/webstore/detail/chess-move-say/bffngaamkkngdgfojfpahbhmfodpbbho |
Beskrivelse | Reads chess move names aloud after moves are played. |
Filstørrelse | 1.73 MB |
Antal Installationer | 165 |
Nuværende Version | 1.0 |
Senest Opdateret | 2019-11-22 |
Udgivelsesdato | 2019-11-22 |
Bedømmelse | 4.00/5 Samlet 1 Bedømmelser |
Udvikler | Advait Shinde |
[email protected] | |
Betalingsmetode | free |
Udvidelseswebsted | https://gitlab.com/advait3000/chess-move-say |
Hjælpeside-URL | https://gitlab.com/advait3000/chess-move-say/issues |
Understøttede Sprog | 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" ] } |