Hacker News Collapsible Comments

Adds reddit-like [+] and [-] links to collapse and expand comment threads.

O que é Hacker News Collapsible Comments?

Hacker News Collapsible Comments é uma extensão do Chrome desenvolvida por muitocomplicado, e sua principal característica é "Adds reddit-like [+] and [-] links to collapse and expand comment threads.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Hacker News Collapsible Comments

Baixe arquivos de extensão Hacker News Collapsible 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

                        Based on the bookmarklet code by niyazpk.
https://github.com/niyazpk/Collapsible-comments-for-Hacker-News

v1.3 - Added support for https and updated the collapsible comments script.                    

Informações Básicas da Extensão

Nome Hacker News Collapsible Comments Hacker News Collapsible Comments
ID hockhafcdegocajmjhafgjncjpodihkd
URL Oficial https://chromewebstore.google.com/detail/hacker-news-collapsible-c/hockhafcdegocajmjhafgjncjpodihkd
Descrição Adds reddit-like [+] and [-] links to collapse and expand comment threads.
Tamanho do Arquivo 42.23 KB
Contagem de Instalações 283
Versão Atual 1.3
Última Atualização 2013-03-12
Data de Publicação 2013-03-12
Classificação 4.67/5 Total de 27 Avaliações
Desenvolvedor muitocomplicado
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hacker News Collapsible Comments",
    "version": "1.3",
    "manifest_version": 2,
    "description": "Adds reddit-like [+] and [-] links to collapse and expand comment threads.",
    "icons": {
        "48": "icon-48.png",
        "128": "icon-128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/news.ycombinator.com\/*",
                "https:\/\/news.ycombinator.com\/*",
                "http:\/\/hackerne.ws\/*",
                "https:\/\/hackerne.ws\/*"
            ],
            "js": [
                "jquery.js",
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ]
}