Hacker News Sorter

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

¿Qué es Hacker News Sorter?

Hacker News Sorter es una extensión de Chrome desarrollada por thejspr, y su función principal es "Sort posts by points, enables search and linkify's Hacker News.".

Capturas de Pantalla de la Extensión

screenshot
screenshot
screenshot

Descargar Archivo CRX de la Extensión Hacker News Sorter

Descarga archivos de extensión Hacker News Sorter en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        - 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                    

Información Básica de la Extensión

Nombre Hacker News Sorter Hacker News Sorter
ID anmdmfcnlenkjbiffghfjglgjpchneeo
URL Oficial https://chromewebstore.google.com/detail/hacker-news-sorter/anmdmfcnlenkjbiffghfjglgjpchneeo
Descripción Sort posts by points, enables search and linkify's Hacker News.
Tamaño del Archivo 39.18 KB
Cantidad de Instalaciones 101
Versión Actual 1.7.0
Última Actualización 2022-10-09
Fecha de Publicación 2014-09-19
Calificación 5.00/5 Total de 4 Calificaciones
Desarrollador thejspr
Correo electrónico [email protected]
Tipo de Pago free
Sitio Web de la Extensión https://github.com/thejspr/hacker-news-sorter
Idiomas Soportados 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"
}