Spelling Bee Hints

Spelling Bee Hints

Hints for the NYT Spelling Bee

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "author": "Chrish",
  "description": "Hints for the NYT Spelling Bee",
  "manifest_version": 3,
  "name": "Spelling Bee Hints",
  "version": "1.5",
  "permissions": [
    "declarativeContent",
    "scripting",
    "storage",
    "tabs"
  ],
  "host_permissions": [
    "https://www.nytimes.com/puzzles/spelling-bee",
    "https://spellingbeehints.com/*"
  ],
  "action": {
    "default_icon": {
      "16": "icons/hints-16.png",
      "24": "icons/hints-24.png",
      "32": "icons/hints-32.png",
      "48": "icons/hints-48.png",
      "64": "icons/hints-64.png",
      "128": "icons/hints-128.png"
    },
    "default_popup": "popup/popup.html",
    "default_title": "Spelling Bee Hints"
  },
  "background": {
    "service_worker": "scripts/background.js"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.nytimes.com/puzzles/spelling-bee",
        "https://www.nytimes.com/puzzles/spelling-bee?*"
      ],
      "js": [
        "scripts/content.js"
      ]
    }
  ],
  "icons": {
    "16": "icons/hints-16.png",
    "24": "icons/hints-24.png",
    "32": "icons/hints-32.png",
    "48": "icons/hints-48.png",
    "64": "icons/hints-64.png",
    "128": "icons/hints-128.png"
  }
}