Hacker News Collapsible Comments

Hacker News Collapsible Comments

Adds reddit-like [+] and [-] links to collapse and expand comment threads.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Hacker News Collapsible Comments",
  "version": "1.3",
  "manifest_version": 2,
  "description": "Adds reddit-like [+] and [-] links to collapse and expand comment threads.",
  "icons": {
    "48": "icon-48.png",
    "128": "icon-128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://news.ycombinator.com/*",
        "https://news.ycombinator.com/*",
        "http://hackerne.ws/*",
        "https://hackerne.ws/*"
      ],
      "js": [
        "jquery.js",
        "contentscript.js"
      ],
      "run_at": "document_idle",
      "all_frames": false
    }
  ]
}