Hacked News

A simple, clean Hacker News theme.

O que é Hacked News?

Hacked News é uma extensão do Chrome desenvolvida por Bala Clark, e sua principal característica é "A simple, clean Hacker News theme.".

Capturas de Tela da Extensão

screenshot
screenshot
screenshot
screenshot

Baixar o arquivo CRX da Extensão Hacked News

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

                        Provides a clean and readable Hacker News experience as well as some other optional HN enhancements.

Included Enhancements:

 * View text only versions of articles (via ViewText.org)
 * Open articles in a new window
 * Article toolbar with HN meta data and voting functionality

This extension is open source and source code is available on github: https://github.com/balaclark/hacked-news                    

Informações Básicas da Extensão

Nome Hacked News Hacked News
ID klijiafmajbhbkhjbfajmdbogjlcibeb
URL Oficial https://chrome.google.com/webstore/detail/hacked-news/klijiafmajbhbkhjbfajmdbogjlcibeb
Descrição A simple, clean Hacker News theme.
Tamanho do Arquivo 37.65 KB
Contagem de Instalações 18
Versão Atual 0.1.2
Última Atualização 2013-08-11
Data de Publicação 2013-08-11
Classificação 4.00/5 Total de 4 Avaliações
Desenvolvedor Bala Clark
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hacked News",
    "version": "0.1.2",
    "description": "A simple, clean Hacker News theme.",
    "permissions": [
        "tabs",
        "storage",
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "background": {
        "scripts": [
            "events.js"
        ],
        "persistent": false
    },
    "options_page": "options.html",
    "offline_enabled": true,
    "icons": {
        "16": "icon_16.png",
        "48": "icon_48.png",
        "128": "icon_128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/news.ycombinator.com\/*",
                "http:\/\/www.hnsearch.com\/*",
                "https:\/\/news.ycombinator.com\/*",
                "https:\/\/www.hnsearch.com\/*"
            ],
            "css": [
                "hn.css"
            ],
            "js": [
                "hn.js"
            ]
        }
    ]
}