New Comments
Shows new comments posted on reddit and Hacker News since you last visited a comment thread.
Cos'è New Comments?
New Comments è un'estensione di Chrome sviluppata da Cédric Beust, e la sua funzione principale è "Shows new comments posted on reddit and Hacker News since you last visited a comment thread.".
Screenshot dell'Estensione
Scarica il file CRX dell'estensione New Comments
Scarica i file di estensione New Comments in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.
Istruzioni per l'Uso dell'Estensione
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.
Informazioni di Base sull'Estensione
Nome | New Comments |
ID | jldpfbgmbdnnjdgohphppjnpadogdime |
URL Ufficiale | https://chromewebstore.google.com/detail/new-comments/jldpfbgmbdnnjdgohphppjnpadogdime |
Descrizione | Shows new comments posted on reddit and Hacker News since you last visited a comment thread. |
Dimensione del File | 41 KB |
Conteggio Installazioni | 135 |
Versione Corrente | 15 |
Ultimo Aggiornamento | 2022-09-01 |
Data di Pubblicazione | 2016-02-12 |
Valutazione | 3.83/5 Totale 6 Valutazioni |
Sviluppatore | Cédric Beust |
[email protected] | |
Tipo di Pagamento | free |
Lingue Supportate | 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" ] } |