NYT Crossword Dark Mode

NYT Crossword Dark Mode

Adds a dark mode to the New York Times Crossword page

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "NYT Crossword Dark Mode",
  "version": "1.0",
  "description": "Adds a dark mode to the New York Times Crossword page",
  "icons": {
    "16": "images/icon-16.png",
    "32": "images/icon-32.png",
    "48": "images/icon-48.png",
    "128": "images/icon-128.png"
  },
  "content_scripts": [
    {
      "js": [
        "scripts/content.js"
      ],
      "matches": [
        "https://www.nytimes.com/crosswords/game/*"
      ]
    }
  ]
}