Make Wordle Accessible

Makes the popular game Wordle accessible to screen-reader users.

Co to jest Make Wordle Accessible?

Make Wordle Accessible to rozszerzenie Chrome opracowane przez dmazzoni, a jego główną funkcją jest „Makes the popular game Wordle accessible to screen-reader users.”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Make Wordle Accessible

Pobierz pliki rozszerzeń Make Wordle Accessible w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        This extension makes some modifications to Wordle, found at https://www.powerlanguage.co.uk/wordle/, so that it works better for screen reader users. To use it, just install the extension, then visit Wordle and reload the page if necessary. Tested with VoiceOver on macOS and JAWS on Windows, should work with other screen readers too.

The authors of this extension are not affiliated in any way with the authors of Wordle.                    

Podstawowe informacje o rozszerzeniu

Nazwa Make Wordle Accessible Make Wordle Accessible
ID okpjjdhfccnkdhcbbpmigemhfeeacdpl
Oficjalny URL https://chromewebstore.google.com/detail/make-wordle-accessible/okpjjdhfccnkdhcbbpmigemhfeeacdpl
Opis Makes the popular game Wordle accessible to screen-reader users.
Rozmiar pliku 5.07 KB
Liczba instalacji 957
Aktualna Wersja 0.4
Ostatnia Aktualizacja 2022-06-28
Data Publikacji 2022-01-17
Ocena 4.67/5 Łącznie 3 Oceny
Deweloper dmazzoni
E-mail [email protected]
Typ Płatności free
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Make Wordle Accessible",
    "manifest_version": 3,
    "version": "0.4",
    "description": "Makes the popular game Wordle accessible to screen-reader users.",
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.powerlanguage.co.uk\/wordle\/",
                "https:\/\/www.nytimes.com\/games\/wordle\/*"
            ],
            "js": [
                "wordle-script.js"
            ]
        }
    ]
}