Hacker News - Sticky Comments

Hacker News - Sticky Comments

Improves readability on Hacker News by making parent comments of a thread sticky as you scroll.

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 - Sticky Comments",
  "description": "Improves readability on Hacker News by making parent comments of a thread sticky as you scroll.",
  "icons": {
    "128": "icon.png"
  },
  "version": "0.0.1",
  "permissions": [],
  "content_scripts": [
    {
      "matches": [
        "https://news.ycombinator.com/item*"
      ],
      "js": [
        "index.user.js"
      ]
    }
  ]
}