Lichess Text To Speech

Uses text to speech to pronounce moves played on Lichess

Lichess Text To Speech là gì?

Lichess Text To Speech là một tiện ích mở rộng Chrome được phát triển bởi Eika, và tính năng chính của nó là "Uses text to speech to pronounce moves played on Lichess".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Lichess Text To Speech

Tải xuống các tệp mở rộng Lichess Text To Speech dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Lichess Text To Speech Lichess Text To Speech
ID khmempcacbgfbhkeocpahgcmognoaoeh
URL Chính Thức https://chromewebstore.google.com/detail/lichess-text-to-speech/khmempcacbgfbhkeocpahgcmognoaoeh
Mô tả Uses text to speech to pronounce moves played on Lichess
Kích Thước Tệp 12.66 KB
Số Lần Cài Đặt 612
Phiên Bản Hiện Tại 1.0.5
Cập Nhật Lần Cuối 2023-08-11
Ngày Phát Hành 2020-04-14
Đánh Giá 4.17/5 Tổng số 12 Đánh Giá
Nhà Phát Triển Eika
Email [email protected]
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
    }
}