Wordle Solver

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

Wordle Solver란 무엇입니까?

Wordle Solver은(는) Adam Janicki에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "A custom-built solver for Wordle that can solve a puzzle in an average of under 4 guesses!"입니다.

확장 프로그램 스크린샷

screenshot

Wordle Solver 확장 프로그램 CRX 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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"
    }
}