Make Wordle Accessible

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

Cos'è Make Wordle Accessible?

Make Wordle Accessible è un'estensione di Chrome sviluppata da dmazzoni, e la sua funzione principale è "Makes the popular game Wordle accessible to screen-reader users.".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Make Wordle Accessible

Scarica i file di estensione Make Wordle Accessible in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Make Wordle Accessible Make Wordle Accessible
ID okpjjdhfccnkdhcbbpmigemhfeeacdpl
URL Ufficiale https://chromewebstore.google.com/detail/make-wordle-accessible/okpjjdhfccnkdhcbbpmigemhfeeacdpl
Descrizione Makes the popular game Wordle accessible to screen-reader users.
Dimensione del File 5.07 KB
Conteggio Installazioni 957
Versione Corrente 0.4
Ultimo Aggiornamento 2022-06-28
Data di Pubblicazione 2022-01-17
Valutazione 4.67/5 Totale 3 Valutazioni
Sviluppatore dmazzoni
Email [email protected]
Tipo di Pagamento free
Lingue Supportate 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"
            ]
        }
    ]
}