Wordle Trainer

Lets you know the solution right away!

Co to jest Wordle Trainer?

Wordle Trainer to rozszerzenie Chrome opracowane przez Unknown, a jego główną funkcją jest „Lets you know the solution right away!”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Wordle Trainer

Pobierz pliki rozszerzeń Wordle Trainer 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

                        Just a simple extension that gives you the answer to the wordle right away. 

Meant just as a joke, of course it is pointless to use this to cheat in Wordle, which is a fantastic game meant to test your ability. 

Completely open source -> https://github.com/ckcr4lyf/wordle-trainer

Now works with the NYT version!                    

Podstawowe informacje o rozszerzeniu

Nazwa Wordle Trainer Wordle Trainer
ID ejicpilkpbdlniehaolkdpinagnldbjo
Oficjalny URL https://chromewebstore.google.com/detail/wordle-trainer/ejicpilkpbdlniehaolkdpinagnldbjo
Opis Lets you know the solution right away!
Rozmiar pliku 9.54 KB
Liczba instalacji 48
Aktualna Wersja 1.1
Ostatnia Aktualizacja 2022-02-14
Data Publikacji 2022-01-28
Deweloper Unknown
E-mail [email protected]
Typ Płatności free
Strona Rozszerzenia https://github.com/ckcr4lyf/wordle-trainer
Obsługiwane Języki en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Wordle Trainer",
    "description": "Lets you know the solution right away!",
    "version": "1.1",
    "manifest_version": 3,
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.nytimes.com\/games\/wordle\/index.html"
            ],
            "js": [
                "content-script.js"
            ]
        }
    ],
    "host_permissions": [
        "https:\/\/www.nytimes.com\/games\/wordle\/"
    ]
}