Wordle Helper
An extension to help you solve Wordles
Vad är Wordle Helper?
Wordle Helper är en Chrome-tillägg utvecklad av mysticuno, och dess huvudfunktion är "An extension to help you solve Wordles".
Tilläggsskärmbilder
Ladda ner Wordle Helper-förlängningens CRX-fil
Ladda ner Wordle Helper-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
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.
Grundläggande Information om Tillägg
Namn | Wordle Helper |
ID | lcoapaclmojlnbjipmpfibcjomncgdod |
Officiell webbadress | https://chromewebstore.google.com/detail/wordle-helper/lcoapaclmojlnbjipmpfibcjomncgdod |
Beskrivning | An extension to help you solve Wordles |
Filstorlek | 100 KB |
Antal Installationer | 5,240 |
Aktuell Version | 2.3.1 |
Senast Uppdaterad | 2024-01-17 |
Publiceringsdatum | 2022-01-13 |
Betyg | 3.83/5 Totalt 6 Betyg |
Utvecklare | mysticuno |
E-post | [email protected] |
Betalningssätt | free |
Tilläggswebbplats | https://github.com/mysticuno/wordle-helper |
Hjälpsida URL | https://github.com/mysticuno/wordle-helper/issues/new |
Stödda Språk | 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" ] } ] } |