HN Blocklist

This extension allows you to block users on Hacker News.

HN Blocklist là gì?

HN Blocklist là một tiện ích mở rộng Chrome được phát triển bởi https://www.morgante.net, và tính năng chính của nó là "This extension allows you to block users on Hacker News.".

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

screenshot

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

Tải xuống các tệp mở rộng HN Blocklist 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

                        While Hacker News is in general a great community, sometimes certain users consistently rub you the wrong way. This extension allows you to avoid long arguments by blocking said users.

Within comment threads, a new "block" button is added to block a user. Once blocked, all the user's comments are blocked across Hacker News for you. You can unblock users at any time.

The blocklist is personal to you and not shared with other users. Blocking applies only to comments, not submissions.                    

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

Tên HN Blocklist HN Blocklist
ID cgphkkepnnepcjnjgboihccobkjoecoc
URL Chính Thức https://chromewebstore.google.com/detail/hn-blocklist/cgphkkepnnepcjnjgboihccobkjoecoc
Mô tả This extension allows you to block users on Hacker News.
Kích Thước Tệp 22.6 KB
Số Lần Cài Đặt 79
Phiên Bản Hiện Tại 0.0.1
Cập Nhật Lần Cuối 2015-08-04
Ngày Phát Hành 2015-08-03
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển https://www.morgante.net
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/morgante/hn_blocklist
URL Trang Trợ Giúp https://github.com/morgante/hn_blocklist
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HN Blocklist",
    "version": "0.0.1",
    "manifest_version": 2,
    "description": "This extension allows you to block users on Hacker News.",
    "homepage_url": "https:\/\/github.com\/morgante\/hn_blocklist",
    "permissions": [
        "storage",
        "http:\/\/news.ycombinator.com\/*",
        "https:\/\/news.ycombinator.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "http:\/\/news.ycombinator.com\/*",
                "https:\/\/news.ycombinator.com\/*"
            ],
            "js": [
                "src\/inject.js"
            ],
            "run_at": "document_idle"
        }
    ],
    "icons": {
        "128": "images\/icon128.png",
        "48": "images\/icon48.png"
    }
}