NYT Next/Previous Crossword

Adds a next and previous button to the NYT crossword welcome and finish screen
Premium users can view and search full source code, and see the source code differences between two versions.
Upgrade to premium
manifest.json
{
  "manifest_version": 2,
  "name": "Next/Previous Crossword",
  "version": "2.1",
  "description": "Adds a next and previous button to the crossword welcome and finish screen",
  "permissions": [
    "activeTab"
  ],
  "content_scripts": [
    {
      "matches": [
        "*://*.nytimes.com/crosswords/game/*"
      ],
      "js": [
        "nyt.js"
      ]
    }
  ],
  "browser_specific_settings": {
    "gecko": {
      "id": "{8e22dfd1-c9e0-4480-a62f-6560c53bd33c}"
    }
  }
}