Hacker News Sorter

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

Co je Hacker News Sorter?

Hacker News Sorter je rozšíření Chrome vyvinuté thejspr, a jeho hlavní funkcí je „Sort posts by points, enables search and linkify's Hacker News.“.

Snímky obrazovky rozšíření

screenshot
screenshot
screenshot

Stáhnout soubor CRX rozšíření Hacker News Sorter

Stáhněte si soubory rozšíření Hacker News Sorter ve formátu crx, ručně nainstalujte rozšíření Chrome do prohlížeče nebo sdílejte soubory crx s přáteli, abyste jednoduše nainstalovali rozšíření Chrome.

Pokyny pro Použití Rozšíření

                        - 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                    

Základní Informace o Rozšíření

Název Hacker News Sorter Hacker News Sorter
ID anmdmfcnlenkjbiffghfjglgjpchneeo
Oficiální URL https://chromewebstore.google.com/detail/hacker-news-sorter/anmdmfcnlenkjbiffghfjglgjpchneeo
Popis Sort posts by points, enables search and linkify's Hacker News.
Velikost souboru 39.18 KB
Počet instalací 101
Aktuální Verze 1.7.0
Poslední Aktualizace 2022-10-09
Datum Vydání 2014-09-19
Hodnocení 5.00/5 Celkem 4 Hodnocení
Vývojář thejspr
E-mail [email protected]
Typ Platby free
Webové stránky Rozšíření https://github.com/thejspr/hacker-news-sorter
Podporované Jazyky 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"
}