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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}