Wordle Solver - Can You Beat It?

Wordle Solver - Can You Beat It?

Solve the Wordle word of the day with an algorithm.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Wordle Solver - Can You Beat It?",
  "short_name": "Wordle Solver",
  "description": "Solve the Wordle word of the day with an algorithm.",
  "version": "0.0.3",
  "action": {
    "default_title": "Wordle Solver",
    "default_icon": {
      "96": "icons/icon_96.png"
    },
    "default_popup": "popup.html"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.nytimes.com/games/wordle*"
      ],
      "js": [
        "vendor/browser-polyfill.min.js",
        "vendor/bootstrap.bundle.min.js",
        "contentScripts/wordlist.js",
        "contentScripts/utils.js",
        "contentScripts/main.js"
      ],
      "css": [
        "vendor/bootstrap.min.css"
      ],
      "all_frames": true
    }
  ],
  "icons": {
    "48": "icons/icon_48.png",
    "96": "icons/icon_96.png"
  }
}