Wordle Solver - Can You Beat It?
Solve the Wordle word of the day with an algorithm.
Qu'est-ce que Wordle Solver - Can You Beat It? ?
Wordle Solver - Can You Beat It? est une extension Chrome développée par adamthewebdeveloper, et sa fonction principale est "Solve the Wordle word of the day with an algorithm.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Wordle Solver - Can You Beat It?
Téléchargez les fichiers d'extension Wordle Solver - Can You Beat It? au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Wordle Solver - Can You Beat It? |
ID | cobhbmncjhlgmfndhdloojjojcnbmlic |
URL Officiel | https://chromewebstore.google.com/detail/wordle-solver-can-you-bea/cobhbmncjhlgmfndhdloojjojcnbmlic |
Description | Solve the Wordle word of the day with an algorithm. |
Taille du Fichier | 102 KB |
Nombre d'Installations | 99 |
Version Actuelle | 0.0.3 |
Dernière Mise à Jour | 2022-07-07 |
Date de Publication | 2022-01-20 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | adamthewebdeveloper |
[email protected] | |
Type de Paiement | free |
URL de la Page d'Aide | https://github.com/zvakanaka/wordle-solver-chrome-extension |
Langues Prises en Charge | 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" } } |