HN Keyword Filter

Stop seeing HN stories on offending topics

Cos'è HN Keyword Filter?

HN Keyword Filter è un'estensione di Chrome sviluppata da Feaster Javascript Development, e la sua funzione principale è "Stop seeing HN stories on offending topics".

Screenshot dell'Estensione

screenshot
screenshot

Scarica il file CRX dell'estensione HN Keyword Filter

Scarica i file di estensione HN Keyword Filter 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

                        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.                    

Informazioni di Base sull'Estensione

Nome HN Keyword Filter HN Keyword Filter
ID ooablmjjcdbdjhhjkaffpbjnanonjgnm
URL Ufficiale https://chromewebstore.google.com/detail/hn-keyword-filter/ooablmjjcdbdjhhjkaffpbjnanonjgnm
Descrizione Stop seeing HN stories on offending topics
Dimensione del File 7.31 KB
Conteggio Installazioni 23
Versione Corrente 0.4
Ultimo Aggiornamento 2017-07-19
Data di Pubblicazione 2017-07-19
Valutazione 5.00/5 Totale 3 Valutazioni
Sviluppatore Feaster Javascript Development
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/ShamariFeaster/chrome-extension-hn-filter/tree/master
Lingue Supportate 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
    }
}