Wordle Solver - Can You Beat It?

Solve the Wordle word of the day with an algorithm.

什么是Wordle Solver - Can You Beat It??

Wordle Solver - Can You Beat It?是由adamthewebdeveloper开发的Chrome扩展程序,该扩展的主要功能是“Solve the Wordle word of the day with an algorithm.”。

扩展截图

screenshot

下载Wordle Solver - Can You Beat It?扩展crx文件

下载Wordle Solver - Can You Beat It?扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        This is not an official Wordle extension. It will automate game-play on the Wordle website, allowing you to see how your Wordle skills compare with the computer.

Icons from popo2021 on flaticon.com: https://www.flaticon.com/free-icon/letter-w_7312338                    

扩展基本信息

名称 Wordle Solver - Can You Beat It? Wordle Solver - Can You Beat It?
ID cobhbmncjhlgmfndhdloojjojcnbmlic
官方URL https://chromewebstore.google.com/detail/wordle-solver-can-you-bea/cobhbmncjhlgmfndhdloojjojcnbmlic
简介 Solve the Wordle word of the day with an algorithm.
文件大小 102 KB
安装次数 99
当前版本 0.0.3
更新时间 2022-07-07
上架时间 2022-01-20
评分 5.00/5 共1次评分
开发者 adamthewebdeveloper
电子邮箱 [email protected]
付费类型 free
帮助页面URL https://github.com/zvakanaka/wordle-solver-chrome-extension
支持的语言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "name": "Wordle Solver - Can You Beat It?",
    "short_name": "Wordle Solver",
    "description": "Solve the Wordle word of the day with an algorithm.",
    "version": "0.0.3",
    "action": {
        "default_title": "Wordle Solver",
        "default_icon": {
            "96": "icons\/icon_96.png"
        },
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.nytimes.com\/games\/wordle*"
            ],
            "js": [
                "vendor\/browser-polyfill.min.js",
                "vendor\/bootstrap.bundle.min.js",
                "contentScripts\/wordlist.js",
                "contentScripts\/utils.js",
                "contentScripts\/main.js"
            ],
            "css": [
                "vendor\/bootstrap.min.css"
            ],
            "all_frames": true
        }
    ],
    "icons": {
        "48": "icons\/icon_48.png",
        "96": "icons\/icon_96.png"
    }
}