Hacked News

Hacked News

A simple, clean Hacker News theme.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hacked News",
  "version": "0.1.2",
  "description": "A simple, clean Hacker News theme.",
  "permissions": [
    "tabs",
    "storage",
    "http://*/*",
    "https://*/*"
  ],
  "background": {
    "scripts": [
      "events.js"
    ],
    "persistent": false
  },
  "options_page": "options.html",
  "offline_enabled": true,
  "icons": {
    "16": "icon_16.png",
    "48": "icon_48.png",
    "128": "icon_128.png"
  },
  "content_scripts": [
    {
      "matches": [
        "http://news.ycombinator.com/*",
        "http://www.hnsearch.com/*",
        "https://news.ycombinator.com/*",
        "https://www.hnsearch.com/*"
      ],
      "css": [
        "hn.css"
      ],
      "js": [
        "hn.js"
      ]
    }
  ]
}