Hacker News Comment Highlighter
Highlights unread comments in Hacker News threads
O que é Hacker News Comment Highlighter?
Hacker News Comment Highlighter é uma extensão do Chrome desenvolvida por Jonathan Bergknoff, e sua principal característica é "Highlights unread comments in Hacker News threads".
Capturas de Tela da Extensão
Baixar o arquivo CRX da Extensão Hacker News Comment Highlighter
Baixe arquivos de extensão Hacker News Comment Highlighter 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 Chrome extension keeps track of which comments you've seen in a given Hacker News thread, and then highlights the new comments when you return to the page. This is useful when you are following an active thread and just want to read what's new. This extension is open source. The source code is available at https://github.com/jbergknoff/hn-comment-highlighter.
Informações Básicas da Extensão
Nome | Hacker News Comment Highlighter |
ID | acgehogfllndeafpieloojhdmpffbjnb |
URL Oficial | https://chromewebstore.google.com/detail/hacker-news-comment-highl/acgehogfllndeafpieloojhdmpffbjnb |
Descrição | Highlights unread comments in Hacker News threads |
Tamanho do Arquivo | 13.14 KB |
Contagem de Instalações | 45 |
Versão Atual | 1.0.1 |
Última Atualização | 2015-08-06 |
Data de Publicação | 2015-08-06 |
Classificação | 5.00/5 Total de 1 Avaliações |
Desenvolvedor | Jonathan Bergknoff |
Tipo de Pagamento | free |
Site da Extensão | https://github.com/jbergknoff/hn-comment-highlighter |
Idiomas Suportados | en |
manifest.json | |
{ "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx", "manifest_version": 2, "name": "Hacker News Comment Highlighter", "description": "Highlights unread comments in Hacker News threads", "version": "1.0.1", "icons": { "128": "icon.png" }, "content_scripts": [ { "matches": [ "https:\/\/news.ycombinator.com\/item?*" ], "js": [ "highlighter.js" ], "css": [ "highlighter.css" ] } ], "permissions": [ "storage" ] } |