Wordle Cheat Sheet

Adds a helpful cheat sheet of word sufggestions to Wordle.

Wordle Cheat Sheetคืออะไร?

Wordle Cheat Sheet เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Fabian Meier และคุณลักษณะหลักของมันคือ "Adds a helpful cheat sheet of word sufggestions to Wordle."

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

screenshot

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

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

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

                        This extension adds a helpful cheat sheet to the Wordle game. We do not use Wordle's own list of words, instead we use 3rd party APIs to populate the cheat sheet. This guarantees that the extension will still work if the Wordle team ever decides to hide its own list of words.

During the development of this extension I realized that the game is way more fun if you do not cheat with this little helper, but it might still be useful for some.

Have fun riddling!

Update 20.2.2022: Made it work for nytimes.                    

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

ชื่อ Wordle Cheat Sheet Wordle Cheat Sheet
ID hjffddncgpjpjbnfphfaagohljcjohae
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/wordle-cheat-sheet/hjffddncgpjpjbnfphfaagohljcjohae
คำอธิบาย Adds a helpful cheat sheet of word sufggestions to Wordle.
ขนาดไฟล์ 15.07 KB
จำนวนการติดตั้ง 235
เวอร์ชันปัจจุบัน 1.1
อัปเดตครั้งล่าสุด 2022-02-22
วันที่เผยแพร่ 2022-01-30
ผู้พัฒนา Fabian Meier
อีเมล [email protected]
ประเภทการชำระเงิน free
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wordle Cheat Sheet",
    "version": "1.1",
    "description": "Adds a helpful cheat sheet of word sufggestions to Wordle.",
    "background": {
        "service_worker": "data_fetcher.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.powerlanguage.co.uk\/wordle\/",
                "https:\/\/www.nytimes.com\/games\/wordle\/index.html"
            ],
            "js": [
                "wordle_cheat_sheet.js"
            ],
            "css": [
                "wordle_cheat_sheet.css"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/www.thewordfinder.com\/anagram-solver\/",
        "https:\/\/api.datamuse.com\/words"
    ],
    "icons": {
        "16": "images\/icon_16.png",
        "32": "images\/icon_32.png",
        "48": "images\/icon_48.png",
        "128": "images\/icon_128.png",
        "340": "images\/icon_340.png"
    },
    "manifest_version": 3
}