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」です。

拡張機能のスクリーンショット

screenshot

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 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
Eメール [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"
    }
}