New Comments
Shows new comments posted on reddit and Hacker News since you last visited a comment thread.
O que é New Comments?
New Comments é uma extensão do Chrome desenvolvida por Cédric Beust, e sua principal característica é "Shows new comments posted on reddit and Hacker News since you last visited a comment thread.".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão New Comments
Baixe arquivos de extensão New Comments no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.
Instruções de Uso da Extensão
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.
Informações Básicas da Extensão
Nome | New Comments |
ID | jldpfbgmbdnnjdgohphppjnpadogdime |
URL Oficial | https://chromewebstore.google.com/detail/new-comments/jldpfbgmbdnnjdgohphppjnpadogdime |
Descrição | Shows new comments posted on reddit and Hacker News since you last visited a comment thread. |
Tamanho do Arquivo | 41 KB |
Contagem de Instalações | 135 |
Versão Atual | 15 |
Última Atualização | 2022-09-01 |
Data de Publicação | 2016-02-12 |
Classificação | 3.83/5 Total de 6 Avaliações |
Desenvolvedor | Cédric Beust |
[email protected] | |
Tipo de Pagamento | free |
Idiomas Suportados | 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" ] } |