Wordle Helper
A simple extension which provides suggestions for the game Wordle
What is Wordle Helper?
Wordle Helper is a Chrome extension developed by ianuany, and its main feature is "A simple extension which provides suggestions for the game Wordle".
Extension Screenshots
Download Wordle Helper Extension CRX File
Download Wordle Helper 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
Use this extension on Wordle - https://www.powerlanguage.co.uk/wordle/ to get suggestions on words to use while you play.
Extension Basic Information
Name | Wordle Helper |
ID | dladdminkijkbheckenoahkgmkmpembb |
Official URL | https://chromewebstore.google.com/detail/wordle-helper/dladdminkijkbheckenoahkgmkmpembb |
Description | A simple extension which provides suggestions for the game Wordle |
File Size | 14.26 KB |
Installation Count | 125 |
Current Version | 2.0 |
Last Updated | 2022-03-02 |
Publish Date | 2022-01-12 |
Developer | ianuany |
[email protected] | |
Payment Type | free |
Extension Website | https://github.com/ianunay/wordle-helper |
Help Page URL | https://github.com/ianunay/wordle-helper/issues |
Supported Languages | en-US |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "name": "Wordle Helper", "description": "A simple extension which provides suggestions for the game Wordle", "version": "2.0", "manifest_version": 3, "icons": { "16": "logo.png", "48": "logo.png", "128": "logo.png" }, "action": { "default_popup": "index.html", "default_icon": "logo.png" }, "content_scripts": [ { "matches": [ "https:\/\/www.nytimes.com\/games\/wordle*" ], "js": [ "content-script.js", "wordle-dict.js" ] } ] } |