HN Keyword Filter

Stop seeing HN stories on offending topics

¿Qué es HN Keyword Filter?

HN Keyword Filter es una extensión de Chrome desarrollada por Feaster Javascript Development, y su función principal es "Stop seeing HN stories on offending topics".

Capturas de Pantalla de la Extensión

screenshot
screenshot

Descargar Archivo CRX de la Extensión HN Keyword Filter

Descarga archivos de extensión HN Keyword Filter 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

                        Source Available on github

Tired of seeing political stories in the HN list? Not interested in the latest JavaScript framework? Had enough of the Rust lovefest? Now you can kill stories you're not interested in before they soil your precious eyes.

Instructions:

1. When you're on HN, you'll see the little YCombinator logo enable.
2. Click it and type create a comma-separated list of words into the textarea.

You keywords are persisted across popup opens and browser sessions via localStorage.

Those words are used to filter out unwanted stories. The filtration happens on page load and when the list is changed (debounce of 1 sec). The removed stories are printed to the console.                    

Información Básica de la Extensión

Nombre HN Keyword Filter HN Keyword Filter
ID ooablmjjcdbdjhhjkaffpbjnanonjgnm
URL Oficial https://chromewebstore.google.com/detail/hn-keyword-filter/ooablmjjcdbdjhhjkaffpbjnanonjgnm
Descripción Stop seeing HN stories on offending topics
Tamaño del Archivo 7.31 KB
Cantidad de Instalaciones 23
Versión Actual 0.4
Última Actualización 2017-07-19
Fecha de Publicación 2017-07-19
Calificación 5.00/5 Total de 3 Calificaciones
Desarrollador Feaster Javascript Development
Tipo de Pago free
Sitio Web de la Extensión https://github.com/ShamariFeaster/chrome-extension-hn-filter/tree/master
Idiomas Soportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "HN Keyword Filter",
    "version": "0.4",
    "default_locale": "en",
    "description": "Stop seeing HN stories on offending topics",
    "icons": {
        "16": "hn.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/news.ycombinator.com\/*"
            ],
            "js": [
                "contentScript.js"
            ]
        }
    ],
    "page_action": {
        "default_icon": "hn.png",
        "default_popup": "popup.html"
    },
    "permissions": [
        "tabs",
        "webNavigation",
        "declarativeContent"
    ],
    "author": "Shamari Feaster",
    "background": {
        "scripts": [
            "main.js"
        ],
        "persistent": false
    }
}