Wordle Solver
Automatically solves Wordle
Vad är Wordle Solver?
Wordle Solver är en Chrome-tillägg utvecklad av Alex Craig, och dess huvudfunktion är "Automatically solves Wordle".
Tilläggsskärmbilder
Ladda ner Wordle Solver-förlängningens CRX-fil
Ladda ner Wordle Solver-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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. Grundläggande Information om Tillägg
| Namn | |
| ID | lfjeflamjnebohfnmijjaphhlimjgnde |
| Officiell webbadress | https://chromewebstore.google.com/detail/wordle-solver/lfjeflamjnebohfnmijjaphhlimjgnde |
| Beskrivning | Automatically solves Wordle |
| Filstorlek | 187 KB |
| Antal Installationer | 650 |
| Aktuell Version | 2.3 |
| Senast Uppdaterad | 2022-02-11 |
| Publiceringsdatum | 2022-01-22 |
| Betyg | 1.00/5 Totalt 1 Betyg |
| Utvecklare | Alex Craig |
| E-post | [email protected] |
| Betalningssätt | free |
| Tilläggswebbplats | https://github.com/A-J-C/WordleSolver |
| Hjälpsida URL | https://github.com/A-J-C/WordleSolver |
| Stödda Språk | 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\/*"
]
}
]
} | |