HN Keyword Filter

Stop seeing HN stories on offending topics

什么是HN Keyword Filter?

HN Keyword Filter是由Feaster Javascript Development开发的Chrome扩展程序,该扩展的主要功能是“Stop seeing HN stories on offending topics”。

扩展截图

screenshot
screenshot

下载HN Keyword Filter扩展crx文件

下载HN Keyword Filter扩展crx格式的文件,手动将Chrome插件安装到浏览器中,也可以将crx文件分享给朋友,轻松安装Chrome插件。

扩展使用说明

                        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.                    

扩展基本信息

名称 HN Keyword Filter HN Keyword Filter
ID ooablmjjcdbdjhhjkaffpbjnanonjgnm
官方URL https://chromewebstore.google.com/detail/hn-keyword-filter/ooablmjjcdbdjhhjkaffpbjnanonjgnm
简介 Stop seeing HN stories on offending topics
文件大小 7.31 KB
安装次数 23
当前版本 0.4
更新时间 2017-07-19
上架时间 2017-07-19
评分 5.00/5 共3次评分
开发者 Feaster Javascript Development
付费类型 free
扩展官网 https://github.com/ShamariFeaster/chrome-extension-hn-filter/tree/master
支持的语言 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
    }
}