Wordle Suggestions Generator

Wordle Suggestions Generator

Unofficial Extension: Suggests top 10 most plausible words based on the current state of your game.

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 Suggestions Generator",
  "version": "2.0",
  "description": "Unofficial Extension: Suggests top 10 most plausible words based on the current state of your game.",
  "permissions": [
    "activeTab",
    "declarativeContent",
    "scripting"
  ],
  "host_permissions": [
    "https://www.nytimes.com/games/wordle/index.html"
  ],
  "background": {
    "service_worker": "/js/background.js"
  },
  "action": {
    "default_popup": "/html/popup.html",
    "default_icon": {
      "16": "images/wordle-16.png",
      "32": "images/wordle-32.png",
      "48": "images/wordle-48.png",
      "128": "images/wordle-128.png"
    }
  },
  "icons": {
    "16": "images/wordle-16.png",
    "32": "images/wordle-32.png",
    "48": "images/wordle-48.png",
    "128": "images/wordle-128.png"
  },
  "content_security_policy": {
    "extension_pages": "default-src 'self'; connect-src 'self' ws://localhost;"
  }
}