Hacked News

A simple, clean Hacker News theme.

Hacked News là gì?

Hacked News là một tiện ích mở rộng Chrome được phát triển bởi Bala Clark, và tính năng chính của nó là "A simple, clean Hacker News theme.".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot
screenshot
screenshot
screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hacked News

Tải xuống các tệp mở rộng Hacked News dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        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                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hacked News Hacked News
ID klijiafmajbhbkhjbfajmdbogjlcibeb
URL Chính Thức https://chrome.google.com/webstore/detail/hacked-news/klijiafmajbhbkhjbfajmdbogjlcibeb
Mô tả A simple, clean Hacker News theme.
Kích Thước Tệp 37.65 KB
Số Lần Cài Đặt 18
Phiên Bản Hiện Tại 0.1.2
Cập Nhật Lần Cuối 2013-08-11
Ngày Phát Hành 2013-08-11
Đánh Giá 4.00/5 Tổng số 4 Đánh Giá
Nhà Phát Triển Bala Clark
Loại Thanh Toán free
Ngôn Ngữ Được Hỗ Trợ 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"
            ]
        }
    ]
}