Lichess Text To Speech

Uses text to speech to pronounce moves played on Lichess

Lichess Text To Speech क्या है?

Lichess Text To Speech Eika द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Uses text to speech to pronounce moves played on Lichess"।

एक्सटेंशन स्क्रीनशॉट्स

screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Lichess Text To Speech एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}