Wordle Helper
An extension to help you solve Wordles
Apa itu Wordle Helper?
Wordle Helper adalah ekstensi Chrome yang dikembangkan oleh mysticuno, dan fitur utamanya adalah "An extension to help you solve Wordles".
Screenshot Ekstensi
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
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.
Informasi Dasar Ekstensi
Nama | Wordle Helper |
ID | lcoapaclmojlnbjipmpfibcjomncgdod |
URL Resmi | https://chromewebstore.google.com/detail/wordle-helper/lcoapaclmojlnbjipmpfibcjomncgdod |
Deskripsi | An extension to help you solve Wordles |
Ukuran File | 100 KB |
Jumlah Instalasi | 5,240 |
Versi Saat Ini | 2.3.1 |
Terakhir Diperbarui | 2024-01-17 |
Tanggal Publikasi | 2022-01-13 |
Penilaian | 3.83/5 Total 6 Penilaian |
Pengembang | mysticuno |
[email protected] | |
Tipe Pembayaran | free |
Situs Ekstensi | https://github.com/mysticuno/wordle-helper |
URL Halaman Bantuan | https://github.com/mysticuno/wordle-helper/issues/new |
Bahasa yang Didukung | 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" ] } ] } |