Crossword Blogs

Crossword Blogs

Go from a crossword puzzle straight to the blogs/discussions/answers for the puzzle.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "background": {
    "scripts": [
      "blog.js",
      "background.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "https://www.nytimes.com/crosswords/*",
        "https://cdn4.amuselabs.com/lat/crossword*"
      ],
      "js": [
        "date.js",
        "content.js"
      ],
      "css": [
        "content.css"
      ],
      "all_frames": true
    }
  ],
  "permissions": [
    "https://www.reddit.com/r/crossword/*",
    "storage"
  ],
  "browser_action": {
    "default_title": "__MSG_extensionName__",
    "default_icon": "icons/logo_128.png",
    "default_popup": "options/options.html"
  },
  "options_ui": {
    "page": "options/options.html",
    "open_in_tab": true
  },
  "icons": {
    "128": "icons/logo_128.png"
  },
  "web_accessible_resources": [
    "icons/reddit.png"
  ],
  "name": "__MSG_extensionName__",
  "description": "__MSG_extensionDescription__",
  "default_locale": "en",
  "browser_specific_settings": {
    "gecko": {
      "id": "{5A28D5A1-8D40-17C4-0F7C-30F6B39E6B29}"
    }
  },
  "author": "[email protected]",
  "manifest_version": 2,
  "version": "1.3.1"
}