Wordle Solver
Automatically solves Wordle
What is Wordle Solver?
Wordle Solver is a Chrome extension developed by Alex Craig, and its main feature is "Automatically solves Wordle".
Extension Screenshots
Download Wordle Solver Extension CRX File
Download Wordle Solver extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | Wordle Solver |
ID | lfjeflamjnebohfnmijjaphhlimjgnde |
Official URL | https://chromewebstore.google.com/detail/wordle-solver/lfjeflamjnebohfnmijjaphhlimjgnde |
Description | Automatically solves Wordle |
File Size | 187 KB |
Installation Count | 650 |
Current Version | 2.3 |
Last Updated | 2022-02-11 |
Publish Date | 2022-01-22 |
Rating | 1.00/5 Total 1 Ratings |
Developer | Alex Craig |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/A-J-C/WordleSolver |
Help Page URL | https://github.com/A-J-C/WordleSolver |
Supported Languages | 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\/*" ] } ] } |