Wordle Solver - Can You Beat It?
Solve the Wordle word of the day with an algorithm.
Τι είναι το Wordle Solver - Can You Beat It?;
Το Wordle Solver - Can You Beat It? είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον adamthewebdeveloper, και η κύρια λειτουργία του είναι "Solve the Wordle word of the day with an algorithm.".
Στιγμιότυπα Επέκτασης
Λήψη αρχείου CRX της επέκτασης Wordle Solver - Can You Beat It?
Λήψη αρχείων επέκτασης Wordle Solver - Can You Beat It? σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.
Οδηγίες Χρήσης της Επέκτασης
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
Βασικές Πληροφορίες Επέκτασης
Όνομα | Wordle Solver - Can You Beat It? |
ID | cobhbmncjhlgmfndhdloojjojcnbmlic |
Επίσημο URL | https://chromewebstore.google.com/detail/wordle-solver-can-you-bea/cobhbmncjhlgmfndhdloojjojcnbmlic |
Περιγραφή | Solve the Wordle word of the day with an algorithm. |
Μέγεθος Αρχείου | 102 KB |
Αριθμός Εγκαταστάσεων | 99 |
Τρέχουσα Έκδοση | 0.0.3 |
Τελευταία Ενημέρωση | 2022-07-07 |
Ημερομηνία Δημοσίευσης | 2022-01-20 |
Αξιολόγηση | 5.00/5 Συνολικά 1 Αξιολογήσεις |
Προγραμματιστής | adamthewebdeveloper |
Ηλεκτρονικό ταχυδρομείο | [email protected] |
Τύπος Πληρωμής | free |
Διεύθυνση URL της Σελίδας Βοήθειας | https://github.com/zvakanaka/wordle-solver-chrome-extension |
Υποστηριζόμενες Γλώσσες | 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" } } |