Hacker News Sorter

Sort posts by points, enables search and linkify's Hacker News.

What is Hacker News Sorter?

Hacker News Sorter is a Chrome extension developed by thejspr, and its main feature is "Sort posts by points, enables search and linkify's Hacker News.".

Extension Screenshots

screenshot
screenshot
screenshot

Download Hacker News Sorter Extension CRX File

Download Hacker News Sorter extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        - Sort posts by points
- Enable search in header
- Autolink posts

Sort posts by clicking the button in the top left corner.

Feel free to leave any suggestions, requests or feedback.

Source available at: https://github.com/thejspr/hacker-news-sorter

Regards,
https://news.ycombinator.com/user?id=thejspr                    

Extension Basic Information

Name Hacker News Sorter Hacker News Sorter
ID anmdmfcnlenkjbiffghfjglgjpchneeo
Official URL https://chromewebstore.google.com/detail/hacker-news-sorter/anmdmfcnlenkjbiffghfjglgjpchneeo
Description Sort posts by points, enables search and linkify's Hacker News.
File Size 39.18 KB
Installation Count 101
Current Version 1.7.0
Last Updated 2022-10-09
Publish Date 2014-09-19
Rating 5.00/5 Total 4 Ratings
Developer thejspr
Email [email protected]
Payment Type free
Extension Website https://github.com/thejspr/hacker-news-sorter
Supported Languages en
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"
}