Lichess Speaker

Lichess clock and moves speaker

Lichess Speaker क्या है?

Lichess Speaker maciej.caderek द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Lichess clock and moves speaker"।

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

screenshot

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

crx प्रारूप में Lichess Speaker एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Lichess extension that uses voice synthesis to
* remind you of the remaining time during the chess game,
* remind you to move after specified time,
* start the countdown when you are very low on time,
* read the moves from the chess notation.

You can chose from many different voices (different languages)!
You can customize your alerts for each time control!
You can play blindfolded!                    

एक्सटेंशन की मूल जानकारी

नाम Lichess Speaker Lichess Speaker
ID kpdengkjmlndpmnlllipgdgkpdlcgndi
आधिकारिक URL https://chrome.google.com/webstore/detail/lichess-speaker/kpdengkjmlndpmnlllipgdgkpdlcgndi
विवरण Lichess clock and moves speaker
फ़ाइल का आकार 227 KB
स्थापना संख्या 104
वर्तमान संस्करण 1.4
अंतिम अपडेट 2021-09-14
प्रकाशन तिथि 2021-09-06
रेटिंग 5.00/5 कुल 3 रेटिंग्स
डेवलपर maciej.caderek
ईमेल [email protected]
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट https://github.com/caderek/lichess-speaker
सहायता पृष्ठ URL https://github.com/caderek/lichess-speaker/issues
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Lichess Speaker",
    "description": "Lichess clock and moves speaker",
    "version": "1.4",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "storage",
        "scripting"
    ],
    "action": {
        "default_popup": "popup\/popup.html",
        "default_icon": {
            "16": "\/images\/ico16.png",
            "32": "\/images\/ico32.png",
            "48": "\/images\/ico48.png",
            "96": "\/images\/ico96.png",
            "128": "\/images\/ico128.png"
        }
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/lichess.org\/*"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "icons": {
        "16": "\/images\/ico16.png",
        "32": "\/images\/ico32.png",
        "48": "\/images\/ico48.png",
        "96": "\/images\/ico96.png",
        "128": "\/images\/ico128.png"
    }
}