Lichess Speaker

Lichess clock and moves speaker

Apa itu Lichess Speaker?

Lichess Speaker adalah ekstensi Chrome yang dikembangkan oleh maciej.caderek, dan fitur utamanya adalah "Lichess clock and moves speaker".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Lichess Speaker

Unduh file ekstensi Lichess Speaker dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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!                    

Informasi Dasar Ekstensi

Nama Lichess Speaker Lichess Speaker
ID kpdengkjmlndpmnlllipgdgkpdlcgndi
URL Resmi https://chrome.google.com/webstore/detail/lichess-speaker/kpdengkjmlndpmnlllipgdgkpdlcgndi
Deskripsi Lichess clock and moves speaker
Ukuran File 227 KB
Jumlah Instalasi 104
Versi Saat Ini 1.4
Terakhir Diperbarui 2021-09-14
Tanggal Publikasi 2021-09-06
Penilaian 5.00/5 Total 3 Penilaian
Pengembang maciej.caderek
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/caderek/lichess-speaker
URL Halaman Bantuan https://github.com/caderek/lichess-speaker/issues
Bahasa yang Didukung 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"
    }
}