New Comments
Shows new comments posted on reddit and Hacker News since you last visited a comment thread.
Was ist New Comments?
New Comments ist eine Chrome-Erweiterung, die von Cédric Beust entwickelt wurde, und ihr Hauptmerkmal ist "Shows new comments posted on reddit and Hacker News since you last visited a comment thread.".
Erweiterungsscreenshots
New Comments-Erweiterungs-CRX-Datei herunterladen
Laden Sie New Comments-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.
Anleitung zur Verwendung der Erweiterung
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.
Grundlegende Informationen zur Erweiterung
Name | New Comments |
ID | jldpfbgmbdnnjdgohphppjnpadogdime |
Offizielle URL | https://chromewebstore.google.com/detail/new-comments/jldpfbgmbdnnjdgohphppjnpadogdime |
Beschreibung | Shows new comments posted on reddit and Hacker News since you last visited a comment thread. |
Dateigröße | 41 KB |
Installationsanzahl | 135 |
Aktuelle Version | 15 |
Letztes Update | 2022-09-01 |
Veröffentlichungsdatum | 2016-02-12 |
Bewertung | 3.83/5 Insgesamt 6 Bewertungen |
Entwickler | Cédric Beust |
[email protected] | |
Zahlungsart | free |
Unterstützte Sprachen | 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" ] } |