Hacker News: Mark All Read

Save time on HN by marking read the titles and comments you already scanned

Hacker News: Mark All Read란 무엇입니까?

Hacker News: Mark All Read은(는) Dan Mazzini (danmaz74)에 의해 개발된 Chrome 확장 프로그램으로, 주요 기능은 "Save time on HN by marking read the titles and comments you already scanned"입니다.

확장 프로그램 스크린샷

screenshot
screenshot
screenshot
screenshot
screenshot

Hacker News: Mark All Read 확장 프로그램 CRX 파일 다운로드

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

확장 프로그램 사용 설명서

                        Use this extension to mark all news items in a Hacker News listing page as read. This way, when you reload the page, you will be able to immediately spot the new items that you haven't scanned yet, because only those new items links will show a "not visited" color. You can also hide the items you marked as read.

The data about marked as read items is stored on your local browser and is shared between HN pages: If you mark an item as read on the "news" page and it later makes it into the home, you will see it as read in the home too.

You can also choose to follow the comments of a news item: If you do so, the item will appear (with a different color) in the home page even if it was marked as read. You can mark the comments as read, and read the number of unread comments in the home page.

Last but not least, you can collapse comment threads, and show the parent of a comment you're reading by hovering on the "show parent" link. This way following discussions with lots of comments becomes easier.

Enjoy!                    

확장 프로그램 기본 정보

이름 Hacker News: Mark All Read Hacker News: Mark All Read
ID ogfbcfkihdkplelnaenpgkhnkpoaggjc
공식 URL https://chromewebstore.google.com/detail/hacker-news-mark-all-read/ogfbcfkihdkplelnaenpgkhnkpoaggjc
설명 Save time on HN by marking read the titles and comments you already scanned
파일 크기 43.21 KB
설치 횟수 222
현재 버전 1.4
최근 업데이트 2013-03-13
출시 날짜 2013-03-13
평점 4.27/5 총 11 개의 평점
개발자 Dan Mazzini (danmaz74)
결제 유형 free
확장 프로그램 웹 사이트 http://danmaz74.me/
도움말 페이지 URL http://danmaz74.me/2012/05/27/introducing-hacker-news-mark-all-read-for-chrome/
지원되는 언어 en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hacker News: Mark All Read",
    "version": "1.4",
    "manifest_version": 2,
    "description": "Save time on HN by marking read the titles and comments you already scanned",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/news.ycombinator.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery.min.js",
                "script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/HNMarkAllRead-18.png",
        "styles.css"
    ],
    "icons": {
        "128": "images\/HNMarkAllRead.png"
    }
}