HN Unread Comments

HN Unread Comments

Shows unread comments on Hacker News (http://news.ycombinator.com/)

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HN Unread Comments",
  "short_name": "HN Unread Comments",
  "manifest_version": 2,
  "version": "1.3",
  "description": "Shows unread comments on Hacker News (http://news.ycombinator.com/)",
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon48.png",
    "128": "icons/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "https://news.ycombinator.com/item?id=*",
        "https://news.ycombinator.com/threads?id=*"
      ],
      "js": [
        "lib/jquery.js",
        "lib/phpjs.js",
        "lib/storage_object.js",
        "src/hn_unread_comments.js"
      ]
    }
  ],
  "permissions": [
    "unlimitedStorage"
  ]
}