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
官方網址 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
電子郵箱 [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"
    ]
}