Wordle Solver

An extension to solve Wordles for you. Only works on the NYTimes Wordle page.

Wordle Solverคืออะไร?

Wordle Solver เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Levi Lesches และคุณลักษณะหลักของมันคือ "An extension to solve Wordles for you. Only works on the NYTimes Wordle page."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Wordle Solver

ดาวน์โหลดไฟล์ส่วนขยาย Wordle Solver ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Have you ever wanted to play Wordle without playing Wordle? Well do I have news for you! This extension will play Wordle for you so you can sit back and relax while your friends stress out. You can totally brag about your superhuman scores too!

Only works on the official NYTimes Wordle page at: 
https://www.nytimes.com/games/wordle/index.html

Explanation: 
This algorithm works by going through the dictionary and, for each word: 
  1. Assume that is the correct word
  2. Go back and judge all previous guesses based on that assumption
  3. Compare its judgements against the results from Wordle
If they match, then this word can be the Wordle word. Otherwise, it must be wrong. Possible matches are scored on entropy (number of unique letters) and popularity (based on the most commonly-used 1,000 words) and the most likely word is chosen. Because I only have data on the top 1,000 words, this ranking isn't foolproof. 

Sometimes, a Wordle is unsolvable without some luck. This can happen when the algorithm gets most of the letters green and is left with one or two letters that it isn't getting right. For example, if you get STO_E, that could mean: stole, stove, store, stoke, or stone, and there aren't enough guesses to figure out which. What some people do is guess a completely different word like "ranks" to see if the r, k, or n would turn up black or yellow. But Wordle has a "hard mode" that forbids this strategy. The algorithm plays by the hard mode rules, so it is possible to lose sometimes. 

This extension does not collect, store, or transmit your personal data.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Wordle Solver Wordle Solver
ID fgehijkikhaopnegkkckgbnecpccngok
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/wordle-solver/fgehijkikhaopnegkkckgbnecpccngok
คำอธิบาย An extension to solve Wordles for you. Only works on the NYTimes Wordle page.
ขนาดไฟล์ 6.05 MB
จำนวนการติดตั้ง 29
เวอร์ชันปัจจุบัน 3.0.3
อัปเดตครั้งล่าสุด 2023-09-05
วันที่เผยแพร่ 2022-04-01
ผู้พัฒนา Levi Lesches
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wordle Solver",
    "description": "An extension to solve Wordles for you. Only works on the NYTimes Wordle page.",
    "version": "3.0.3",
    "manifest_version": 3,
    "action": {
        "default_title": "Click to solve"
    },
    "permissions": [
        "activeTab",
        "scripting"
    ],
    "background": {
        "service_worker": "src\/service_worker.js"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "\/data\/*"
            ],
            "matches": [
                "https:\/\/www.nytimes.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png"
    }
}