Wordle Answer Finder
Helps you with the Wordle
Qu'est-ce que Wordle Answer Finder ?
Wordle Answer Finder est une extension Chrome développée par idkwtph, et sa fonction principale est "Helps you with the Wordle".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension Wordle Answer Finder
Téléchargez les fichiers d'extension Wordle Answer Finder au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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
Informations de Base sur l'Extension
Nom | Wordle Answer Finder |
ID | dkdjnmadfgeococnnkmepbnplfllaffg |
URL Officiel | https://chromewebstore.google.com/detail/wordle-answer-finder/dkdjnmadfgeococnnkmepbnplfllaffg |
Description | Helps you with the Wordle |
Taille du Fichier | 141 KB |
Nombre d'Installations | 34 |
Version Actuelle | 1.1.7 |
Dernière Mise à Jour | 2022-10-20 |
Date de Publication | 2022-09-29 |
Évaluation | 5.00/5 Total 1 Évaluations |
Développeur | idkwtph |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" } } |