Description from extension meta
This is a Wordle solver browser extension. Here's what each component does: 1. **popup.js** - Main logic for the extension - Reads…
Image from store
Description from store
This is a Wordle solver browser extension. Here's what each component does:
1. **popup.js**
- Main logic for the extension
- Reads the state of the Wordle game board
- Processes three types of letters:
- Green letters (correct position)
- Yellow letters (correct letter, wrong position)
- Gray letters (not in word)
- Filters a word list to find possible solutions based on:
- Eliminating words with gray letters
- Keeping words with green letters in the correct positions
- Keeping words with yellow letters in different positions
2. **manifest.json**
- Extension configuration
- Defines permissions needed (activeTab, scripting, storage)
- Specifies resources like the word list
- Sets up popup UI and icons
3. **wordList.json**
- Database of valid 5-letter words
- Used as the source dictionary for finding possible solutions
The extension helps solve Wordle puzzles by analyzing the current game state and suggesting possible words that match the given constraints from previous guesses.