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 |
官方網址 | 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" } } |