Wordle Solver - Can You Beat It?
Solve the Wordle word of the day with an algorithm.
What is Wordle Solver - Can You Beat It??
Wordle Solver - Can You Beat It? is a Chrome extension developed by adamthewebdeveloper, and its main feature is "Solve the Wordle word of the day with an algorithm.".
Extension Screenshots
Download Wordle Solver - Can You Beat It? Extension CRX File
Download Wordle Solver - Can You Beat It? 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
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
Extension Basic Information
Name | Wordle Solver - Can You Beat It? |
ID | cobhbmncjhlgmfndhdloojjojcnbmlic |
Official URL | https://chromewebstore.google.com/detail/wordle-solver-can-you-bea/cobhbmncjhlgmfndhdloojjojcnbmlic |
Description | Solve the Wordle word of the day with an algorithm. |
File Size | 102 KB |
Installation Count | 99 |
Current Version | 0.0.3 |
Last Updated | 2022-07-07 |
Publish Date | 2022-01-20 |
Rating | 5.00/5 Total 1 Ratings |
Developer | adamthewebdeveloper |
[email protected] | |
Payment Type | free |
Help Page URL | https://github.com/zvakanaka/wordle-solver-chrome-extension |
Supported Languages | 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" } } |