Wordle Answer Finder
Helps you with the Wordle
Was ist Wordle Answer Finder?
Wordle Answer Finder ist eine Chrome-Erweiterung, die von idkwtph entwickelt wurde, und ihr Hauptmerkmal ist "Helps you with the Wordle".
Erweiterungsscreenshots
Wordle Answer Finder-Erweiterungs-CRX-Datei herunterladen
Laden Sie Wordle Answer Finder-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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 Grundlegende Informationen zur Erweiterung
| Name | |
| ID | dkdjnmadfgeococnnkmepbnplfllaffg |
| Offizielle URL | https://chromewebstore.google.com/detail/wordle-answer-finder/dkdjnmadfgeococnnkmepbnplfllaffg |
| Beschreibung | Helps you with the Wordle |
| Dateigröße | 141 KB |
| Installationsanzahl | 34 |
| Aktuelle Version | 1.1.7 |
| Letztes Update | 2022-10-20 |
| Veröffentlichungsdatum | 2022-09-29 |
| Bewertung | 5.00/5 Insgesamt 1 Bewertungen |
| Entwickler | idkwtph |
| [email protected] | |
| Zahlungsart | free |
| Unterstützte Sprachen | 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"
}
} | |