Make Wordle Accessible

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

什么是Make Wordle Accessible?

Make Wordle Accessible是由dmazzoni开发的Chrome扩展程序,该扩展的主要功能是“Makes the popular game Wordle accessible to screen-reader users.”。

扩展截图

screenshot

下载Make Wordle Accessible扩展crx文件

下载Make Wordle Accessible扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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"
            ]
        }
    ]
}