Wordle Helper

An extension to help you solve Wordles

Wordle Helper là gì?

Wordle Helper là một tiện ích mở rộng Chrome được phát triển bởi mysticuno, và tính năng chính của nó là "An extension to help you solve Wordles".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Wordle Helper

Tải xuống các tệp mở rộng Wordle Helper dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Wordle Helper Wordle Helper
ID lcoapaclmojlnbjipmpfibcjomncgdod
URL Chính Thức https://chromewebstore.google.com/detail/wordle-helper/lcoapaclmojlnbjipmpfibcjomncgdod
Mô tả An extension to help you solve Wordles
Kích Thước Tệp 100 KB
Số Lần Cài Đặt 5,240
Phiên Bản Hiện Tại 2.3.1
Cập Nhật Lần Cuối 2024-01-17
Ngày Phát Hành 2022-01-13
Đánh Giá 3.83/5 Tổng số 6 Đánh Giá
Nhà Phát Triển mysticuno
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/mysticuno/wordle-helper
URL Trang Trợ Giúp https://github.com/mysticuno/wordle-helper/issues/new
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}