Wordle Helper

A simple extension which provides suggestions for the game Wordle

Apa itu Wordle Helper?

Wordle Helper adalah ekstensi Chrome yang dikembangkan oleh ianuany, dan fitur utamanya adalah "A simple extension which provides suggestions for the game Wordle".

Screenshot Ekstensi

screenshot
screenshot

Unduh Berkas CRX Ekstensi Wordle Helper

Unduh file ekstensi Wordle Helper dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

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

Informasi Dasar Ekstensi

Nama Wordle Helper Wordle Helper
ID dladdminkijkbheckenoahkgmkmpembb
URL Resmi https://chromewebstore.google.com/detail/wordle-helper/dladdminkijkbheckenoahkgmkmpembb
Deskripsi A simple extension which provides suggestions for the game Wordle
Ukuran File 14.26 KB
Jumlah Instalasi 125
Versi Saat Ini 2.0
Terakhir Diperbarui 2022-03-02
Tanggal Publikasi 2022-01-12
Pengembang ianuany
Email [email protected]
Tipe Pembayaran free
Situs Ekstensi https://github.com/ianunay/wordle-helper
URL Halaman Bantuan https://github.com/ianunay/wordle-helper/issues
Bahasa yang Didukung 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"
            ]
        }
    ]
}