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.”。
扩展截图
下载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 |
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 |
电子邮箱 | [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" ] } |