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

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

screenshot

ดาวน์โหลดไฟล์ 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? 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"
    }
}