New Comments
Shows new comments posted on reddit and Hacker News since you last visited a comment thread.
Qu'est-ce que New Comments ?
New Comments est une extension Chrome développée par Cédric Beust, et sa fonction principale est "Shows new comments posted on reddit and Hacker News since you last visited a comment thread.".
Captures d'Écran de l'Extension
Télécharger le fichier CRX de l'extension New Comments
Téléchargez les fichiers d'extension New Comments au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.
Instructions d'Utilisation de l'Extension
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.
Informations de Base sur l'Extension
Nom | New Comments |
ID | jldpfbgmbdnnjdgohphppjnpadogdime |
URL Officiel | 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. |
Taille du Fichier | 41 KB |
Nombre d'Installations | 135 |
Version Actuelle | 15 |
Dernière Mise à Jour | 2022-09-01 |
Date de Publication | 2016-02-12 |
Évaluation | 3.83/5 Total 6 Évaluations |
Développeur | Cédric Beust |
[email protected] | |
Type de Paiement | free |
Langues Prises en Charge | 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" ] } |