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ファイルをダウンロード

HN Unread Comments拡張子のファイルをcrx形式でダウンロードし、ブラウザにChrome拡張機能を手動でインストールするか、crxファイルを友達と共有して簡単にChrome拡張機能をインストールします。

拡張機能の使用方法

                        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"
    ]
}