Lichess Text To Speech

Uses text to speech to pronounce moves played on Lichess

ما هو Lichess Text To Speech؟

Lichess Text To Speech هو إضافة Chrome تم تطويرها بواسطة Eika، والميزة الرئيسية لها هي "Uses text to speech to pronounce moves played on Lichess".

لقطات شاشة التمديد

screenshot

تحميل ملف CRX للإضافة Lichess Text To Speech

قم بتنزيل ملفات الامتداد Lichess Text To Speech بتنسيق crx ، وقم بتثبيت الامتدادات يدويًا في متصفح Chrome ، أو شارك ملفات crx مع الأصدقاء لتثبيت الامتدادات بسهولة.

تعليمات استخدام التمديد

                        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
البريد الإلكتروني [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"
    }
}