Wordle Solver

A custom-built solver for Wordle that can solve a puzzle in an average of under 4 guesses!

Τι είναι το Wordle Solver;

Το Wordle Solver είναι ένα πρόσθετο Chrome που αναπτύχθηκε από τον Adam Janicki, και η κύρια λειτουργία του είναι "A custom-built solver for Wordle that can solve a puzzle in an average of under 4 guesses!".

Στιγμιότυπα Επέκτασης

screenshot

Λήψη αρχείου CRX της επέκτασης Wordle Solver

Λήψη αρχείων επέκτασης Wordle Solver σε μορφή crx, εγκατάσταση των επεκτάσεων Chrome μη αυτόματα στον περιηγητή ή κοινοποίηση των αρχείων crx με φίλους για εύκολη εγκατάσταση των επεκτάσεων Chrome.

Οδηγίες Χρήσης της Επέκτασης

                        Wordle Solver is a simple extension for people who need a little help solving a Wordle puzzle. The UI is very very simple, but it gets the job done!

To use, begin by entering in your guess (or use the suggested guess) and then click on the tiles to match the color feedback given by the actual Wordle puzzle. For example, if you guess 'WORDS', and the 'O' is green, click on Wordle Solver's 'O' twice to turn it from black to green. Once the word's tiles matches the tiles from the actual Wordle UI, click submit to generate a new guess!

Wordle Solver uses a simple algorithm to generate recommended words. After each guess made by the user, the algorithm prunes candidate words from the possible word set by eliminating words that don't match with the color data. For example, if the user guesses 'WORDS', and only the 'O' is green, Wordle Solver will eliminate all words that don't have an 'O' at position 2. To pick the best candidate from the remaining words, Wordle Solver uses a simple character frequency statistic to pick the most likely word.                    

Βασικές Πληροφορίες Επέκτασης

Όνομα Wordle Solver Wordle Solver
ID kamglbfjffipocefbafohlhgcoiaggge
Επίσημο URL https://chromewebstore.google.com/detail/wordle-solver/kamglbfjffipocefbafohlhgcoiaggge
Περιγραφή A custom-built solver for Wordle that can solve a puzzle in an average of under 4 guesses!
Μέγεθος Αρχείου 520 KB
Αριθμός Εγκαταστάσεων 483
Τρέχουσα Έκδοση 0.0.1
Τελευταία Ενημέρωση 2022-04-11
Ημερομηνία Δημοσίευσης 2022-04-10
Αξιολόγηση 1.00/5 Συνολικά 1 Αξιολογήσεις
Προγραμματιστής Adam Janicki
Ηλεκτρονικό ταχυδρομείο [email protected]
Τύπος Πληρωμής free
Ιστότοπος Επέκτασης https://adamjanicki2.github.io/wordle-solver-ui
Υποστηριζόμενες Γλώσσες en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wordle Solver",
    "description": "A custom-built solver for Wordle that can solve a puzzle in an average of under 4 guesses!",
    "version": "0.0.1",
    "manifest_version": 3,
    "permissions": [
        "storage"
    ],
    "action": {
        "default_popup": ".\/index.html",
        "default_icon": {
            "16": ".\/16.png",
            "32": ".\/32.png",
            "48": ".\/48.png",
            "128": ".\/128.png"
        }
    },
    "icons": {
        "16": ".\/16.png",
        "32": ".\/32.png",
        "48": ".\/48.png",
        "128": ".\/128.png"
    }
}