Lichess Text To Speech
Uses text to speech to pronounce moves played on Lichess
什么是Lichess Text To Speech?
Lichess Text To Speech是由Eika开发的Chrome扩展程序,该扩展的主要功能是“Uses text to speech to pronounce moves played on Lichess”。
扩展截图
下载Lichess Text To Speech扩展crx文件
下载Lichess Text To Speech扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Uses text to speech to pronounce moves played on Lichess. It's able to support various TTS engines supported by your browser and operating system. You can customise speech tokens like ranks, files, piece names, and other information that is being read out by TTS.
扩展基本信息
名称 | Lichess Text To Speech |
ID | khmempcacbgfbhkeocpahgcmognoaoeh |
官方URL | https://chromewebstore.google.com/detail/lichess-text-to-speech/khmempcacbgfbhkeocpahgcmognoaoeh |
简介 | Uses text to speech to pronounce moves played on Lichess |
文件大小 | 12.66 KB |
安装次数 | 612 |
当前版本 | 1.0.5 |
更新时间 | 2023-08-11 |
上架时间 | 2020-04-14 |
评分 | 4.17/5 共12次评分 |
开发者 | Eika |
电子邮箱 | [email protected] |
付费类型 | free |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Lichess Text To Speech", "short_name": "Lichess TTS", "author": "Eika Mikiku", "version": "1.0.5", "description": "Uses text to speech to pronounce moves played on Lichess", "content_scripts": [ { "run_at": "document_end", "matches": [ "https:\/\/lichess.org\/*" ], "js": [ "script.js" ] } ], "permissions": [ "storage" ], "browser_action": { "default_icon": "knight48.png", "default_popup": "popup.html" }, "icons": { "16": "knight48.png", "48": "knight48.png", "128": "knight128.png" } } |