Make Wordle Accessible

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

Make Wordle Accessible क्या है?

Make Wordle Accessible dmazzoni द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Makes the popular game Wordle accessible to screen-reader users."।

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

screenshot

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

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

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

                        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.                    

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

नाम Make Wordle Accessible Make Wordle Accessible
ID okpjjdhfccnkdhcbbpmigemhfeeacdpl
आधिकारिक URL https://chromewebstore.google.com/detail/make-wordle-accessible/okpjjdhfccnkdhcbbpmigemhfeeacdpl
विवरण Makes the popular game Wordle accessible to screen-reader users.
फ़ाइल का आकार 5.07 KB
स्थापना संख्या 957
वर्तमान संस्करण 0.4
अंतिम अपडेट 2022-06-28
प्रकाशन तिथि 2022-01-17
रेटिंग 4.67/5 कुल 3 रेटिंग्स
डेवलपर dmazzoni
ईमेल [email protected]
भुगतान के प्रकार free
समर्थित भाषाएँ 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"
            ]
        }
    ]
}