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
公式URL 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"
    ]
}