Wordle Helper

A simple extension which provides suggestions for the game Wordle

Wordle Helperคืออะไร?

Wordle Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย ianuany และคุณลักษณะหลักของมันคือ "A simple extension which provides suggestions for the game Wordle"

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

screenshot
screenshot

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

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

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

                        Use this extension on Wordle - https://www.powerlanguage.co.uk/wordle/ to get suggestions on words to use while you play.                    

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

ชื่อ Wordle Helper Wordle Helper
ID dladdminkijkbheckenoahkgmkmpembb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/wordle-helper/dladdminkijkbheckenoahkgmkmpembb
คำอธิบาย A simple extension which provides suggestions for the game Wordle
ขนาดไฟล์ 14.26 KB
จำนวนการติดตั้ง 125
เวอร์ชันปัจจุบัน 2.0
อัปเดตครั้งล่าสุด 2022-03-02
วันที่เผยแพร่ 2022-01-12
ผู้พัฒนา ianuany
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/ianunay/wordle-helper
URL หน้าช่วยเหลือ https://github.com/ianunay/wordle-helper/issues
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wordle Helper",
    "description": "A simple extension which provides suggestions for the game Wordle",
    "version": "2.0",
    "manifest_version": 3,
    "icons": {
        "16": "logo.png",
        "48": "logo.png",
        "128": "logo.png"
    },
    "action": {
        "default_popup": "index.html",
        "default_icon": "logo.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.nytimes.com\/games\/wordle*"
            ],
            "js": [
                "content-script.js",
                "wordle-dict.js"
            ]
        }
    ]
}