Hacker News Highlighter

Hacker News Highlighter

A subtle indicator of popular posts on Hacker News

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "http://clients2.google.com/service/update2/crx",
  "name": "Hacker News Highlighter",
  "version": "0.7",
  "manifest_version": 2,
  "description": "A subtle indicator of popular posts on Hacker News",
  "icons": {
    "16": "images/icon16.png",
    "48": "images/icon48.png",
    "128": "images/icon128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://news.ycombinator.com/*",
        "https://news.ycombinator.com/*"
      ],
      "js": [
        "zepto.min.js",
        "color-news.js"
      ],
      "run_at": "document_start"
    }
  ]
}