Hacker News

Hacker News

Hacker News for your new tab. Night mode or day mode (just like your IDE). Card view with images or the classic HN list view.

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",
  "description": "Hacker News for your new tab. Night mode or day mode (just like your IDE). Card view with images or the classic HN list view.",
  "version": "1.0.4",
  "author": "gitconnected",
  "browser_action": {
    "default_icon": "yc-night.png",
    "default_title": "New Tab"
  },
  "icons": {
    "16": "yc-night-small.png",
    "48": "yc-night.png",
    "128": "yc-night.png"
  },
  "chrome_url_overrides": {
    "newtab": "index.html"
  },
  "permissions": [],
  "background": {
    "scripts": [
      "background.js"
    ],
    "persistent": false
  }
}