Wordle Helper
An extension to help you solve Wordles
Co to jest Wordle Helper?
Wordle Helper to rozszerzenie Chrome opracowane przez mysticuno, a jego główną funkcją jest „An extension to help you solve Wordles”.
Zrzuty ekranu rozszerzenia
Pobierz plik CRX rozszerzenia Wordle Helper
Pobierz pliki rozszerzeń Wordle Helper w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.
Instrukcja Użytkowania Rozszerzenia
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.
Podstawowe informacje o rozszerzeniu
Nazwa | Wordle Helper |
ID | lcoapaclmojlnbjipmpfibcjomncgdod |
Oficjalny URL | https://chromewebstore.google.com/detail/wordle-helper/lcoapaclmojlnbjipmpfibcjomncgdod |
Opis | An extension to help you solve Wordles |
Rozmiar pliku | 100 KB |
Liczba instalacji | 5,240 |
Aktualna Wersja | 2.3.1 |
Ostatnia Aktualizacja | 2024-01-17 |
Data Publikacji | 2022-01-13 |
Ocena | 3.83/5 Łącznie 6 Oceny |
Deweloper | mysticuno |
[email protected] | |
Typ Płatności | free |
Strona Rozszerzenia | https://github.com/mysticuno/wordle-helper |
Adres URL Strony Pomocy | https://github.com/mysticuno/wordle-helper/issues/new |
Obsługiwane Języki | 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" ] } ] } |