New Comments

Shows new comments posted on reddit and Hacker News since you last visited a comment thread.

New Commentsとは何ですか?

New CommentsはCédric Beustによって開発されたChromeの拡張機能で、その主な機能は「Shows new comments posted on reddit and Hacker News since you last visited a comment thread.」です。

拡張機能のスクリーンショット

screenshot

New Comments拡張機能のCRXファイルをダウンロード

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

拡張機能の使用方法

                        This extension remembers last time you visited comment threads on reddit and Hacker News and highlights the comments that were posted since your last visit. If you turn on Chrome sync, this setting will be shared across all your browsers so you can keep track of discussions even on multiple computers.                    

拡張機能の基本情報

名前 New Comments New Comments
ID jldpfbgmbdnnjdgohphppjnpadogdime
公式URL https://chromewebstore.google.com/detail/new-comments/jldpfbgmbdnnjdgohphppjnpadogdime
説明 Shows new comments posted on reddit and Hacker News since you last visited a comment thread.
ファイルサイズ 41 KB
インストール数 135
現在のバージョン 15
最終更新日 2022-09-01
公開日 2016-02-12
評価 3.83/5 合計 6 レビュー
開発者 Cédric Beust
Eメール [email protected]
支払い方法 free
対応言語 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "15",
    "name": "New Comments",
    "description": "Shows new comments posted on reddit and Hacker News since you last visited a comment thread.",
    "author": "Cedric Beust",
    "short_name": "NewComments",
    "manifest_version": 2,
    "permissions": [
        "http:\/\/reddit.com\/",
        "https:\/\/reddit.com\/",
        "http:\/\/news.ycombinator.com\/",
        "https:\/\/news.ycombinator.com\/",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.11.1.min.js",
                "NewComments.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "selector.html"
    ]
}