Wordle Helper
An extension to help you solve Wordles
Wat is Wordle Helper?
Wordle Helper is een Chrome-extensie ontwikkeld door mysticuno, en de belangrijkste functie is "An extension to help you solve Wordles".
Extensie Screenshots
Download het CRX-bestand van de extensie Wordle Helper
Download Wordle Helper-extensiebestanden in crx-indeling, installeer Chrome-extensies handmatig in de browser of deel de crx-bestanden met vrienden om Chrome-extensies eenvoudig te installeren.
Instructies voor het Gebruik van de Extensie
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.
Basisinformatie over de Extensie
Naam | Wordle Helper |
ID | lcoapaclmojlnbjipmpfibcjomncgdod |
Officiële URL | https://chromewebstore.google.com/detail/wordle-helper/lcoapaclmojlnbjipmpfibcjomncgdod |
Beschrijving | An extension to help you solve Wordles |
Bestandsgrootte | 100 KB |
Aantal Installaties | 5,240 |
Huidige Versie | 2.3.1 |
Laatst Bijgewerkt | 2024-01-17 |
Publicatiedatum | 2022-01-13 |
Beoordeling | 3.83/5 Totaal 6 Beoordelingen |
Ontwikkelaar | mysticuno |
[email protected] | |
Betalingswijze | free |
Extensiewebsite | https://github.com/mysticuno/wordle-helper |
Help Pagina-URL | https://github.com/mysticuno/wordle-helper/issues/new |
Ondersteunde Talen | 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" ] } ] } |