NYT Crossword Fullscreen

NYT Crossword Fullscreen

Adds a fullscreen button to the NYT crossword UI.

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 Fullscreen",
  "version": "1.80",
  "description": "Adds a fullscreen button to the NYT crossword UI.",
  "icons": {
    "48": "icons/icon-48.png",
    "96": "icons/icon-96.png"
  },
  "content_scripts": [
    {
      "matches": [
        "*://www.nytimes.com/crosswords/game/*"
      ],
      "js": [
        "fullscreen.js"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "fullscreen.svg"
      ],
      "matches": [
        "*://www.nytimes.com/*"
      ]
    }
  ]
}