hckr news

hckr news

Add functionality to news.ycombinator.com and hckrnews.com

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "hckr news",
  "version": "2.0",
  "manifest_version": 2,
  "icons": {
    "72": "hckrnews-72.png"
  },
  "description": "Add functionality to news.ycombinator.com and hckrnews.com",
  "background": {
    "scripts": [
      "browser-polyfill.js",
      "background-script.js"
    ]
  },
  "content_scripts": [
    {
      "matches": [
        "*://hckrnews.com/*"
      ],
      "js": [
        "browser-polyfill.js",
        "hckr_inject.js"
      ]
    },
    {
      "matches": [
        "*://news.ycombinator.com/item*"
      ],
      "js": [
        "browser-polyfill.js",
        "hn_inject.js",
        "jquery-1.7.1.min.js",
        "hacker_news_comment_coll.user.js"
      ]
    }
  ]
}