Wordle Solver

Wordle Solver

An extension to solve Wordles for you. Only works on the NYTimes Wordle page.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Wordle Solver",
  "description": "An extension to solve Wordles for you. Only works on the NYTimes Wordle page.",
  "version": "3.0.3",
  "manifest_version": 3,
  "action": {
    "default_title": "Click to solve"
  },
  "permissions": [
    "activeTab",
    "scripting"
  ],
  "background": {
    "service_worker": "src/service_worker.js"
  },
  "web_accessible_resources": [
    {
      "resources": [
        "/data/*"
      ],
      "matches": [
        "https://www.nytimes.com/*"
      ]
    }
  ],
  "icons": {
    "16": "images/icon_16.png",
    "32": "images/icon_32.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png"
  }
}