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
    }
}