Wordle Solver
Automatically solves Wordle
什么是Wordle Solver?
Wordle Solver是由Alex Craig开发的Chrome扩展程序,该扩展的主要功能是“Automatically solves Wordle”。
扩展截图
下载Wordle Solver扩展crx文件
下载Wordle Solver扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。
扩展使用说明
Automatically finds the next best word for you to play in the popular game Wordle! (https://www.powerlanguage.co.uk/wordle/) Using a basic set of 5 letter words and a bit of information theory.
扩展基本信息
名称 | Wordle Solver |
ID | lfjeflamjnebohfnmijjaphhlimjgnde |
官方URL | https://chromewebstore.google.com/detail/wordle-solver/lfjeflamjnebohfnmijjaphhlimjgnde |
简介 | Automatically solves Wordle |
文件大小 | 187 KB |
安装次数 | 650 |
当前版本 | 2.3 |
更新时间 | 2022-02-11 |
上架时间 | 2022-01-22 |
评分 | 1.00/5 共1次评分 |
开发者 | Alex Craig |
电子邮箱 | [email protected] |
付费类型 | free |
扩展官网 | https://github.com/A-J-C/WordleSolver |
帮助页面URL | https://github.com/A-J-C/WordleSolver |
支持的语言 | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Wordle Solver", "description": "Automatically solves Wordle", "version": "2.3", "manifest_version": 3, "permissions": [ "activeTab", "scripting" ], "action": { "default_popup": "popup.html", "default_icon": { "16": "\/images\/wordle_16.png", "32": "\/images\/wordle_32.png", "48": "\/images\/wordle_48.png", "128": "\/images\/wordle_128.png" } }, "icons": { "16": "\/images\/wordle_16.png", "32": "\/images\/wordle_32.png", "48": "\/images\/wordle_48.png", "128": "\/images\/wordle_128.png" }, "web_accessible_resources": [ { "resources": [ "words\/*" ], "matches": [ "https:\/\/www.powerlanguage.co.uk\/*" ] } ] } |