Wordle Trainer
Lets you know the solution right away!
Vad är Wordle Trainer?
Wordle Trainer är en Chrome-tillägg utvecklad av Unknown, och dess huvudfunktion är "Lets you know the solution right away!".
Tilläggsskärmbilder
Ladda ner Wordle Trainer-förlängningens CRX-fil
Ladda ner Wordle Trainer-filändelser i crx-format, installera Chrome-tillägg manuellt i webbläsaren eller dela crx-filerna med vänner för att enkelt installera Chrome-tillägg.
Användarmanual för Tillägg
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!
Grundläggande Information om Tillägg
Namn | Wordle Trainer |
ID | ejicpilkpbdlniehaolkdpinagnldbjo |
Officiell webbadress | https://chromewebstore.google.com/detail/wordle-trainer/ejicpilkpbdlniehaolkdpinagnldbjo |
Beskrivning | Lets you know the solution right away! |
Filstorlek | 9.54 KB |
Antal Installationer | 48 |
Aktuell Version | 1.1 |
Senast Uppdaterad | 2022-02-14 |
Publiceringsdatum | 2022-01-28 |
Utvecklare | Unknown |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/ckcr4lyf/wordle-trainer |
Stödda Språk | 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\/" ] } |