Spelling Bee Trainer

Spelling Bee Trainer

A Chrome Extension that helps you learn the words you miss in the NYT Spelling Bee 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": "Spelling Bee Trainer",
  "version": "0.1.0",
  "description": "A Chrome Extension that helps you learn the words you miss in the NYT Spelling Bee game.",
  "icons": {
    "16": "icons/icon_16.png",
    "32": "icons/icon_32.png",
    "48": "icons/icon_48.png",
    "128": "icons/icon_128.png"
  },
  "action": {},
  "background": {
    "service_worker": "background.js"
  },
  "permissions": [
    "storage"
  ],
  "content_scripts": [
    {
      "matches": [
        "https://*.nytimes.com/puzzles/spelling-bee/*"
      ],
      "run_at": "document_idle",
      "js": [
        "contentScript.js"
      ]
    }
  ]
}