Hacker News Comment Highlighter

Highlights unread comments in Hacker News threads

什麼是Hacker News Comment Highlighter?

Hacker News Comment Highlighter是由Jonathan Bergknoff開發的Chrome擴展程式,該擴展的主要功能是“Highlights unread comments in Hacker News threads”。

擴展截圖

screenshot

下載Hacker News Comment Highlighter擴展crx文件

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

擴展使用說明

                        This Chrome extension keeps track of which comments you've seen in a given Hacker News thread, and then highlights the new comments when you return to the page. This is useful when you are following an active thread and just want to read what's new.

This extension is open source. The source code is available at https://github.com/jbergknoff/hn-comment-highlighter.                    

擴展基本資訊

名稱 Hacker News Comment Highlighter Hacker News Comment Highlighter
ID acgehogfllndeafpieloojhdmpffbjnb
官方網址 https://chromewebstore.google.com/detail/hacker-news-comment-highl/acgehogfllndeafpieloojhdmpffbjnb
簡介 Highlights unread comments in Hacker News threads
檔案大小 13.14 KB
安裝次數 45
目前版本 1.0.1
更新時間 2015-08-06
上架時間 2015-08-06
評分 5.00/5 共 1 次評分
開發者 Jonathan Bergknoff
付費類型 free
擴展官網 https://github.com/jbergknoff/hn-comment-highlighter
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hacker News Comment Highlighter",
    "description": "Highlights unread comments in Hacker News threads",
    "version": "1.0.1",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/news.ycombinator.com\/item?*"
            ],
            "js": [
                "highlighter.js"
            ],
            "css": [
                "highlighter.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}