Wordle Solver - Can You Beat It?
Solve the Wordle word of the day with an algorithm.
Was ist Wordle Solver - Can You Beat It??
Wordle Solver - Can You Beat It? ist eine Chrome-Erweiterung, die von adamthewebdeveloper entwickelt wurde, und ihr Hauptmerkmal ist "Solve the Wordle word of the day with an algorithm.".
Erweiterungsscreenshots
Wordle Solver - Can You Beat It?-Erweiterungs-CRX-Datei herunterladen
Laden Sie Wordle Solver - Can You Beat It?-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | cobhbmncjhlgmfndhdloojjojcnbmlic |
| Offizielle URL | https://chromewebstore.google.com/detail/wordle-solver-can-you-bea/cobhbmncjhlgmfndhdloojjojcnbmlic |
| Beschreibung | Solve the Wordle word of the day with an algorithm. |
| Dateigröße | 102 KB |
| Installationsanzahl | 99 |
| Aktuelle Version | 0.0.3 |
| Letztes Update | 2022-07-07 |
| Veröffentlichungsdatum | 2022-01-20 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | adamthewebdeveloper |
| [email protected] | |
| Zahlungsart | free |
| Hilfeseite URL | https://github.com/zvakanaka/wordle-solver-chrome-extension |
| Unterstützte Sprachen | 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"
}
} | |