Hacked News

A simple, clean Hacker News theme.

什麼是Hacked News?

Hacked News是由Bala Clark開發的Chrome擴展程式,該擴展的主要功能是“A simple, clean Hacker News theme.”。

擴展截圖

screenshot
screenshot
screenshot
screenshot

下載Hacked News擴展crx文件

下載Hacked News擴展crx格式的文件,手動將Chrome擴充功能安裝到瀏覽器中,也可以將crx文件分享給朋友,輕鬆安裝Chrome擴充功能。

擴展使用說明

                        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                    

擴展基本資訊

名稱 Hacked News Hacked News
ID klijiafmajbhbkhjbfajmdbogjlcibeb
官方網址 https://chrome.google.com/webstore/detail/hacked-news/klijiafmajbhbkhjbfajmdbogjlcibeb
簡介 A simple, clean Hacker News theme.
檔案大小 37.65 KB
安裝次數 18
目前版本 0.1.2
更新時間 2013-08-11
上架時間 2013-08-11
評分 4.00/5 共 4 次評分
開發者 Bala Clark
付費類型 free
支援的語言 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"
            ]
        }
    ]
}