Wordle Cheat Sheet

Wordle Cheat Sheet

Adds a helpful cheat sheet of word sufggestions to Wordle.

Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Wordle Cheat Sheet",
  "version": "1.1",
  "description": "Adds a helpful cheat sheet of word sufggestions to Wordle.",
  "background": {
    "service_worker": "data_fetcher.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.powerlanguage.co.uk/wordle/",
        "https://www.nytimes.com/games/wordle/index.html"
      ],
      "js": [
        "wordle_cheat_sheet.js"
      ],
      "css": [
        "wordle_cheat_sheet.css"
      ]
    }
  ],
  "host_permissions": [
    "https://www.thewordfinder.com/anagram-solver/",
    "https://api.datamuse.com/words"
  ],
  "icons": {
    "16": "images/icon_16.png",
    "32": "images/icon_32.png",
    "48": "images/icon_48.png",
    "128": "images/icon_128.png",
    "340": "images/icon_340.png"
  },
  "manifest_version": 3
}