HN Unread Comments

Shows unread comments on Hacker News (http://news.ycombinator.com/)

HN Unread Comments란 무엇입니까?

HN Unread Comments은(는) Jan Hančič에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Shows unread comments on Hacker News (http://news.ycombinator.com/)"입니다.

확장 프로그램 스크린샷

screenshot

HN Unread Comments 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        This extension will keep track of comments you read on Hacker News and then show you which ones are new (it works on the "threads" page and on a individual item).

v1.3.0 changes so that the border on unread comments is only visible on the left, and is now 2px thick

v1.2 fixes the extension so that it now works on HN again.

v1.1 fixes some issues with detecting comments. It now uses a different way to track read comments, and should be more reliable. Leave comments if you find any bugs.

Source code is freely available on GitHub: http://github.com/janhancic/hn-unread-comments                    

확장 프로그램 기본 정보

이름 HN Unread Comments HN Unread Comments
ID fpndmkcfggkffpablcooicmihgcgalil
공식 URL https://chromewebstore.google.com/detail/hn-unread-comments/fpndmkcfggkffpablcooicmihgcgalil
설명 Shows unread comments on Hacker News (http://news.ycombinator.com/)
파일 크기 44.29 KB
설치 횟수 20
현재 버전 1.3
최근 업데이트 2013-10-26
출시 날짜 2013-10-26
평점 5.00/5 총 3 개의 평점
개발자 Jan Hančič
결제 유형 free
확장 프로그램 웹 사이트 http://hancic.info/hn-unread-comments
도움말 페이지 URL http://github.com/janhancic/hn-unread-comments/issues
지원되는 언어 en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "HN Unread Comments",
    "short_name": "HN Unread Comments",
    "manifest_version": 2,
    "version": "1.3",
    "description": "Shows unread comments on Hacker News (http:\/\/news.ycombinator.com\/)",
    "icons": {
        "16": "icons\/icon16.png",
        "48": "icons\/icon48.png",
        "128": "icons\/icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/news.ycombinator.com\/item?id=*",
                "https:\/\/news.ycombinator.com\/threads?id=*"
            ],
            "js": [
                "lib\/jquery.js",
                "lib\/phpjs.js",
                "lib\/storage_object.js",
                "src\/hn_unread_comments.js"
            ]
        }
    ],
    "permissions": [
        "unlimitedStorage"
    ]
}