Hacker News Sorter

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

Cos'è Hacker News Sorter?

Hacker News Sorter è un'estensione di Chrome sviluppata da thejspr, e la sua funzione principale è "Sort posts by points, enables search and linkify's Hacker News.".

Screenshot dell'Estensione

screenshot
screenshot
screenshot

Scarica il file CRX dell'estensione Hacker News Sorter

Scarica i file di estensione Hacker News Sorter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        - 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                    

Informazioni di Base sull'Estensione

Nome Hacker News Sorter Hacker News Sorter
ID anmdmfcnlenkjbiffghfjglgjpchneeo
URL Ufficiale https://chromewebstore.google.com/detail/hacker-news-sorter/anmdmfcnlenkjbiffghfjglgjpchneeo
Descrizione Sort posts by points, enables search and linkify's Hacker News.
Dimensione del File 39.18 KB
Conteggio Installazioni 101
Versione Corrente 1.7.0
Ultimo Aggiornamento 2022-10-09
Data di Pubblicazione 2014-09-19
Valutazione 5.00/5 Totale 4 Valutazioni
Sviluppatore thejspr
Email [email protected]
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/thejspr/hacker-news-sorter
Lingue Supportate 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"
}