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文件

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

擴展使用說明

                        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
官方網址 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"
    }
}