New Comments

New Comments

Shows new comments posted on reddit and Hacker News since you last visited a comment thread.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "version": "15",
  "name": "New Comments",
  "description": "Shows new comments posted on reddit and Hacker News since you last visited a comment thread.",
  "author": "Cedric Beust",
  "short_name": "NewComments",
  "manifest_version": 2,
  "permissions": [
    "http://reddit.com/",
    "https://reddit.com/",
    "http://news.ycombinator.com/",
    "https://news.ycombinator.com/",
    "storage"
  ],
  "browser_action": {
    "default_icon": "icon.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://*/*",
        "https://*/*"
      ],
      "js": [
        "jquery-1.11.1.min.js",
        "NewComments.js"
      ]
    }
  ],
  "web_accessible_resources": [
    "selector.html"
  ]
}