Wordle - Dictionary extension

Wordle - Dictionary extension

Think of this Chrome extension as your handy dictionary when playing Wordle.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Wordle - Dictionary extension",
  "description": "Think of this Chrome extension as your handy dictionary when playing Wordle.",
  "version": "1.0.2",
  "manifest_version": 3,
  "content_scripts": [
    {
      "js": [
        "content.js"
      ],
      "matches": [
        "https://www.nytimes.com/games/wordle/index.html"
      ]
    }
  ],
  "action": {
    "default_popup": "popup.html",
    "default_icon": {
      "16": "/128.png",
      "32": "/128.png",
      "48": "/128.png",
      "128": "/128.png"
    }
  },
  "icons": {
    "16": "/128.png",
    "32": "/128.png",
    "48": "/128.png",
    "128": "/128.png"
  }
}