Hacker News Sorter

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

Qu'est-ce que Hacker News Sorter ?

Hacker News Sorter est une extension Chrome développée par thejspr, et sa fonction principale est "Sort posts by points, enables search and linkify's Hacker News.".

Captures d'Écran de l'Extension

screenshot
screenshot
screenshot

Télécharger le fichier CRX de l'extension Hacker News Sorter

Téléchargez les fichiers d'extension Hacker News Sorter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        - 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                    

Informations de Base sur l'Extension

Nom Hacker News Sorter Hacker News Sorter
ID anmdmfcnlenkjbiffghfjglgjpchneeo
URL Officiel https://chromewebstore.google.com/detail/hacker-news-sorter/anmdmfcnlenkjbiffghfjglgjpchneeo
Description Sort posts by points, enables search and linkify's Hacker News.
Taille du Fichier 39.18 KB
Nombre d'Installations 101
Version Actuelle 1.7.0
Dernière Mise à Jour 2022-10-09
Date de Publication 2014-09-19
Évaluation 5.00/5 Total 4 Évaluations
Développeur thejspr
Email [email protected]
Type de Paiement free
Site Web de l'Extension https://github.com/thejspr/hacker-news-sorter
Langues Prises en Charge 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"
}