Hacker News Sorter

Hacker News Sorter

Sort posts by points, enables search and linkify's 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 Sorter",
  "version": "1.7.0",
  "description": "Sort posts by points, enables search and linkify's Hacker News.",
  "content_scripts": [
    {
      "matches": [
        "*://news.ycombinator.com/*"
      ],
      "js": [
        "jquery-3.6.1.min.js",
        "content.js",
        "auto-link.js"
      ]
    }
  ],
  "icons": {
    "48": "icon2.png"
  },
  "permissions": [
    "*://news.ycombinator.com/*"
  ],
  "background": "background.html"
}