New Comments
Shows new comments posted on reddit and Hacker News since you last visited a comment thread.
What is New Comments?
New Comments is a Chrome extension developed by Cédric Beust, and its main feature is "Shows new comments posted on reddit and Hacker News since you last visited a comment thread.".
Extension Screenshots
Download New Comments Extension CRX File
Download New Comments extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.
Extension Usage Instructions
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.
Extension Basic Information
Name | New Comments |
ID | jldpfbgmbdnnjdgohphppjnpadogdime |
Official URL | https://chromewebstore.google.com/detail/new-comments/jldpfbgmbdnnjdgohphppjnpadogdime |
Description | Shows new comments posted on reddit and Hacker News since you last visited a comment thread. |
File Size | 41 KB |
Installation Count | 135 |
Current Version | 15 |
Last Updated | 2022-09-01 |
Publish Date | 2016-02-12 |
Rating | 3.83/5 Total 6 Ratings |
Developer | Cédric Beust |
[email protected] | |
Payment Type | free |
Supported Languages | 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" ] } |