Wordle Helper

An extension to help you solve Wordles

Wordle Helperคืออะไร?

Wordle Helper เป็นส่วนขยายของ Chrome ที่พัฒนาโดย mysticuno และคุณลักษณะหลักของมันคือ "An extension to help you solve Wordles"

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

screenshot
screenshot
screenshot
screenshot

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

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

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

                        A small, open-source extension to help you solve Wordles. Use it when playing on https://www.nytimes.com/games/wordle/index.html

See the code at https://github.com/mysticuno/wordle-helper

Not affiliated with Josh, Wordle, or The New York Times.                    

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

ชื่อ Wordle Helper Wordle Helper
ID lcoapaclmojlnbjipmpfibcjomncgdod
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/wordle-helper/lcoapaclmojlnbjipmpfibcjomncgdod
คำอธิบาย An extension to help you solve Wordles
ขนาดไฟล์ 100 KB
จำนวนการติดตั้ง 5,240
เวอร์ชันปัจจุบัน 2.3.1
อัปเดตครั้งล่าสุด 2024-01-17
วันที่เผยแพร่ 2022-01-13
คะแนน 3.83/5 รวมทั้งหมด 6 คะแนน
ผู้พัฒนา mysticuno
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/mysticuno/wordle-helper
URL หน้าช่วยเหลือ https://github.com/mysticuno/wordle-helper/issues/new
ภาษาที่รองรับ en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wordle Helper",
    "description": "An extension to help you solve Wordles",
    "version": "2.3.1",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab"
    ],
    "action": {
        "default_popup": "popup.html",
        "default_icon": {
            "16": "\/images\/icon-16.png",
            "32": "\/images\/icon-32.png",
            "48": "\/images\/icon-48.png",
            "128": "\/images\/icon-128.png"
        }
    },
    "icons": {
        "16": "\/images\/icon-16.png",
        "32": "\/images\/icon-32.png",
        "48": "\/images\/icon-48.png",
        "128": "\/images\/icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.powerlanguage.co.uk\/wordle\/*",
                "https:\/\/www.nytimes.com\/games\/wordle\/*"
            ],
            "js": [
                ".\/util\/constants.js",
                ".\/util\/solver.js"
            ]
        }
    ]
}