Hacker News Stack

Hacker News Stack

Focus on the really fresh and unread news in YCombinator - Hacker News. Relocate read items into the bottom of the website.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 2,
  "name": "Hacker News Stack",
  "short_name": "hnstack",
  "version": "1.0.0",
  "description": "Focus on the really fresh and unread news in YCombinator - Hacker News. Relocate read items into the bottom of the website.",
  "icons": {
    "16": "images/hn16.png",
    "48": "images/hn48.png",
    "128": "images/hn128.png"
  },
  "background": {
    "page": "background.html"
  },
  "content_scripts": [
    {
      "matches": [
        "*://news.ycombinator.com/",
        "*://news.ycombinator.com/news",
        "*://news.ycombinator.com/newest",
        "*://news.ycombinator.com/x*"
      ],
      "js": [
        "js/hnstack.js"
      ],
      "run_at": "document_end"
    }
  ],
  "page_action": {
    "default_title": "Hacker News Stack",
    "default_icon": "images/hn19.png",
    "default_popup": "popup.html"
  }
}