HipsterNews

HipsterNews

DesignerNews in your HackerNews so you can browse while you browse.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "name": "HipsterNews",
  "version": "0.5",
  "manifest_version": 2,
  "description": "DesignerNews in your HackerNews so you can browse while you browse.",
  "content_security_policy": "script-src 'self' https://ssl.google-analytics.com; object-src 'self'",
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://news.ycombinator.com/*"
      ],
      "css": [
        "styles/main.css"
      ],
      "js": [
        "jquery.min.js",
        "main.js"
      ],
      "run_at": "document_idle"
    }
  ],
  "icons": {
    "16": "icons/16.png",
    "48": "icons/48.png",
    "128": "icons/128.png"
  }
}