Wordle Answer Finder
Helps you with the Wordle
¿Qué es Wordle Answer Finder?
Wordle Answer Finder es una extensión de Chrome desarrollada por idkwtph, y su función principal es "Helps you with the Wordle".
Capturas de Pantalla de la Extensión
Descargar Archivo CRX de la Extensión Wordle Answer Finder
Descarga archivos de extensión Wordle Answer Finder en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.
Instrucciones de Uso de la Extensión
The best Wordle helper! 🚩Features 🌟Autofilling the answer when you open Wordle 🌟Dark Mode and Light Mode to help your eyes' 🌟(Optional) Making the Wordle website's theme match the extension's theme 🌟More features coming soon! 🚩Permissions 🌟"Read and change all your data on the websites you visit": Allows for Autofill and the theme matching feature. It is on all sites and not just "nytimes.com" so that it can show a link when the current URL is not "nytimes.com". 🚩The Github repository 🌟https://github.com/idkwtph/wordleanswerfinder
Información Básica de la Extensión
Nombre | Wordle Answer Finder |
ID | dkdjnmadfgeococnnkmepbnplfllaffg |
URL Oficial | https://chromewebstore.google.com/detail/wordle-answer-finder/dkdjnmadfgeococnnkmepbnplfllaffg |
Descripción | Helps you with the Wordle |
Tamaño del Archivo | 141 KB |
Cantidad de Instalaciones | 34 |
Versión Actual | 1.1.7 |
Última Actualización | 2022-10-20 |
Fecha de Publicación | 2022-09-29 |
Calificación | 5.00/5 Total de 1 Calificaciones |
Desarrollador | idkwtph |
Correo electrónico | [email protected] |
Tipo de Pago | free |
Idiomas Soportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 3, "name": "Wordle Answer Finder", "version": "1.1.7", "description": "Helps you with the Wordle", "permissions": [ "tabs", "storage" ], "background": { "service_worker": "background.js" }, "content_scripts": [ { "matches": [ "https:\/\/www.nytimes.com\/games\/wordle\/index.html" ], "js": [ "wordle.js" ], "css": [ "wordle.css" ] } ], "options_page": "options.html", "action": { "default_popup": "popup.html" }, "icons": { "16": "icons\/checked_checkbox_64px.png", "48": "icons\/checked_checkbox_64px.png", "128": "icons\/checked_checkbox_64px.png" } } |