HN Blocklist

This extension allows you to block users on Hacker News.

什麼是HN Blocklist?

HN Blocklist是由https://www.morgante.net開發的Chrome擴展程式,該擴展的主要功能是“This extension allows you to block users on Hacker News.”。

擴展截圖

screenshot

下載HN Blocklist擴展crx文件

下載HN Blocklist擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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.                    

擴展基本資訊

名稱 HN Blocklist HN Blocklist
ID cgphkkepnnepcjnjgboihccobkjoecoc
官方網址 https://chromewebstore.google.com/detail/hn-blocklist/cgphkkepnnepcjnjgboihccobkjoecoc
簡介 This extension allows you to block users on Hacker News.
檔案大小 22.6 KB
安裝次數 79
目前版本 0.0.1
更新時間 2015-08-04
上架時間 2015-08-03
評分 5.00/5 共 1 次評分
開發者 https://www.morgante.net
付費類型 free
擴展官網 https://github.com/morgante/hn_blocklist
說明頁面URL https://github.com/morgante/hn_blocklist
支援的語言 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"
    }
}