A simple extension which provides suggestions for the game Wordle
Premium users can view and search full source code, and see the source code differences
between two versions.
Upgrade to premium
manifest.json
{
"update_url": "https://clients2.google.com/service/update2/crx",
"name": "Wordle Helper",
"description": "A simple extension which provides suggestions for the game Wordle",
"version": "2.0",
"manifest_version": 3,
"icons": {
"16": "logo.png",
"48": "logo.png",
"128": "logo.png"
},
"action": {
"default_popup": "index.html",
"default_icon": "logo.png"
},
"content_scripts": [
{
"matches": [
"https://www.nytimes.com/games/wordle*"
],
"js": [
"content-script.js",
"wordle-dict.js"
]
}
]
}