HN Keyword Filter

Stop seeing HN stories on offending topics

HN Keyword Filter là gì?

HN Keyword Filter là một tiện ích mở rộng Chrome được phát triển bởi Feaster Javascript Development, và tính năng chính của nó là "Stop seeing HN stories on offending topics".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng HN Keyword Filter

Tải xuống các tệp mở rộng HN Keyword Filter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên HN Keyword Filter HN Keyword Filter
ID ooablmjjcdbdjhhjkaffpbjnanonjgnm
URL Chính Thức https://chromewebstore.google.com/detail/hn-keyword-filter/ooablmjjcdbdjhhjkaffpbjnanonjgnm
Mô tả Stop seeing HN stories on offending topics
Kích Thước Tệp 7.31 KB
Số Lần Cài Đặt 23
Phiên Bản Hiện Tại 0.4
Cập Nhật Lần Cuối 2017-07-19
Ngày Phát Hành 2017-07-19
Đánh Giá 5.00/5 Tổng số 3 Đánh Giá
Nhà Phát Triển Feaster Javascript Development
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/ShamariFeaster/chrome-extension-hn-filter/tree/master
Ngôn Ngữ Được Hỗ Trợ 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
    }
}