HN Keyword Filter
Stop seeing HN stories on offending topics
Qu'est-ce que HN Keyword Filter ?
HN Keyword Filter est une extension Chrome développée par Feaster Javascript Development, et sa fonction principale est "Stop seeing HN stories on offending topics".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension HN Keyword Filter
Téléchargez les fichiers d'extension HN Keyword Filter 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
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.
Informations de Base sur l'Extension
Nom | HN Keyword Filter |
ID | ooablmjjcdbdjhhjkaffpbjnanonjgnm |
URL Officiel | https://chromewebstore.google.com/detail/hn-keyword-filter/ooablmjjcdbdjhhjkaffpbjnanonjgnm |
Description | Stop seeing HN stories on offending topics |
Taille du Fichier | 7.31 KB |
Nombre d'Installations | 23 |
Version Actuelle | 0.4 |
Dernière Mise à Jour | 2017-07-19 |
Date de Publication | 2017-07-19 |
Évaluation | 5.00/5 Total 3 Évaluations |
Développeur | Feaster Javascript Development |
Type de Paiement | free |
Site Web de l'Extension | https://github.com/ShamariFeaster/chrome-extension-hn-filter/tree/master |
Langues Prises en Charge | 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 } } |