Greasy Fork is available in English.

HN Blacklist

Hide Hacker News submissions from sources you don't want to see

Tác giả
booleandilemma
Cài đặt hàng ngày
0
Số lần cài đặt
14
Đánh giá
1 0 0
Phiên bản
2.1.0
Đã tạo
29-05-2021
Đã cập nhật
22-12-2024
Giấy phép
GPL-3.0
Áp dụng cho

Tired of seeing articles from certain sources on Hacker News?

HN Blacklist is for you.

It's also available on GitHub.

Filtering by domain

Simply add the domains of sites you don't want to see articles from:

// Add sources you don't want to see here.
const blacklist = new Set(
    [
        'source:nautil.us',
        'source:fs.blog'
    ]
);

Filtering by title text

If you're tired of seeing articles mentioning "ChatGPT", for example, add the following to the blacklist:

// Add sources you don't want to see here.
const blacklist = new Set(
    [
        'title:ChatGPT'
    ]
);

All titles containing the string "ChatGPT" will be filtered out. This filtering is case-insensitive.

Filtering by user

If you want to filter out submissions by a certain user, prefix your blacklist entry with the string user:, followed by the username.

// Add sources you don't want to see here.
const blacklist = new Set(
    [
        'user:booleandilemma'
    ]
);