Chess Move Say
Reads chess move names aloud after moves are played.
什么是Chess Move Say?
Chess Move Say是由Advait Shinde开发的Chrome扩展程序,该扩展的主要功能是“Reads chess move names aloud after moves are played.”。
扩展截图
下载Chess Move Say扩展crx文件
下载Chess Move Say扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
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
扩展基本信息
名称 | |
ID | bffngaamkkngdgfojfpahbhmfodpbbho |
官方URL | https://chrome.google.com/webstore/detail/chess-move-say/bffngaamkkngdgfojfpahbhmfodpbbho |
简介 | Reads chess move names aloud after moves are played. |
文件大小 | 1.73 MB |
安装次数 | 165 |
当前版本 | 1.0 |
更新时间 | 2019-11-22 |
上架时间 | 2019-11-22 |
评分 | 4.00/5 共1次评分 |
开发者 | Advait Shinde |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://gitlab.com/advait3000/chess-move-say |
帮助页面URL | https://gitlab.com/advait3000/chess-move-say/issues |
支持的语言 | 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" ] } |