Hacked News

A simple, clean Hacker News theme.

What is Hacked News?

Hacked News is a Chrome extension developed by Bala Clark, and its main feature is "A simple, clean Hacker News theme.".

Extension Screenshots

screenshot
screenshot
screenshot
screenshot

Download Hacked News Extension CRX File

Download Hacked News extension files in crx format, manually install Chrome extensions in the browser, or share the crx files with friends to easily install Chrome extensions.

Extension Usage Instructions

                        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                    

Extension Basic Information

Name Hacked News Hacked News
ID klijiafmajbhbkhjbfajmdbogjlcibeb
Official URL https://chrome.google.com/webstore/detail/hacked-news/klijiafmajbhbkhjbfajmdbogjlcibeb
Description A simple, clean Hacker News theme.
File Size 37.65 KB
Installation Count 18
Current Version 0.1.2
Last Updated 2013-08-11
Publish Date 2013-08-11
Rating 4.00/5 Total 4 Ratings
Developer Bala Clark
Payment Type free
Supported Languages 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"
            ]
        }
    ]
}