Hacker News +

Hacker News +

Stylish Hacker News.

Merlin
Additional files are visible only to premium users

manifest.json


{
  "update_url": "https://clients2.google.com/service/update2/crx",
  "manifest_version": 3,
  "name": "Hacker News +",
  "version": "2.0",
  "description": "Stylish Hacker News.",
  "content_scripts": [
    {
      "all_frames": true,
      "css": [
        "style.css"
      ],
      "js": [
        "js/hn.js"
      ],
      "matches": [
        "https://news.ycombinator.com/*"
      ]
    }
  ],
  "web_accessible_resources": [
    {
      "resources": [
        "/fonts/*.ttf"
      ],
      "matches": [
        "https://news.ycombinator.com/*"
      ]
    }
  ],
  "permissions": [
    "storage"
  ]
}