Puzzle Pal

Puzzle Pal

An unofficial extension adding features to classic NY Times games.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "Puzzle Pal",
  "action": {},
  "manifest_version": 3,
  "version": "0.4",
  "description": "An unofficial extension adding features to classic NY Times games.",
  "externally_connectable": {
    "matches": [
      "https://www.nytimes.com/*"
    ]
  },
  "permissions": [
    "storage"
  ],
  "icons": {
    "128": "./puzzle_pal_logo.png"
  },
  "background": {
    "service_worker": "background.js",
    "type": "module"
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.nytimes.com/crosswords/game/*"
      ],
      "js": [
        "crossword-content-script.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.nytimes.com/puzzles/stats"
      ],
      "js": [
        "crossword-stats-content-script.js"
      ],
      "run_at": "document_end"
    },
    {
      "matches": [
        "https://www.nytimes.com/puzzles/spelling-bee"
      ],
      "js": [
        "spelling-bee-content-script.js"
      ],
      "run_at": "document_end"
    }
  ]
}