Hacker News Dark Theme

Hacker News Dark Theme

A non-invaise dark theme for Hacker News.

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 Dark Theme",
  "short_name": "hndt",
  "author": "Adam Zerella",
  "homepage_url": "https://github.com/adamzerella/ext-hn-darkmode",
  "version": "0.1.0",
  "description": "A non-invaise dark theme for Hacker News.",
  "permissions": [
    "https://news.ycombinator.com/"
  ],
  "background": {
    "scripts": [
      "extension.js"
    ],
    "persistent": false
  },
  "browser_action": {
    "default_icon": {
      "16": "icons/icon16.png",
      "24": "icons/icon24.png",
      "32": "icons/icon32.png"
    },
    "default_title": "Hacker News Dark Theme"
  },
  "web_accessible_resources": [
    "extension.js"
  ],
  "icons": {
    "16": "icons/icon16.png",
    "48": "icons/icon64.png",
    "128": "icons/icon128.png"
  }
}