Spelling Bee Helper

Spelling Bee Helper

A helper for NYT Spelling Bee game which keeps a count of the words you've found.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "short_name": "Spelling Bee Helper",
  "name": "Spelling Bee Helper",
  "description": "A helper for NYT Spelling Bee game which keeps a count of the words you've found.",
  "homepage_url": "https://www.nytimes.com/puzzles/spelling-bee",
  "version": "1.1.0",
  "manifest_version": 3,
  "icons": {
    "16": "img/spelling_bee_icon_16.png",
    "32": "img/spelling_bee_icon_32.png",
    "48": "img/spelling_bee_icon_48.png",
    "128": "img/spelling_bee_icon_128.png"
  },
  "content_scripts": [
    {
      "run_at": "document_end",
      "matches": [
        "https://www.nytimes.com/puzzles/spelling-bee",
        "https://nytimes.com/puzzles/spelling-bee"
      ],
      "js": [
        "./static/js/content.js"
      ],
      "css": [
        "./css/style.css",
        "./css/toggle.css",
        "./css/checkbox.css"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "img/settings_cog.svg",
        "img/back_arrow.svg"
      ],
      "matches": [
        "https://www.nytimes.com/*",
        "https://nytimes.com/*"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "[email protected]"
    }
  }
}