Hacked News

A simple, clean Hacker News theme.

Hacked Newsคืออะไร?

Hacked News เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Bala Clark และคุณลักษณะหลักของมันคือ "A simple, clean Hacker News theme."

ภาพหน้าจอของส่วนขยาย

screenshot
screenshot
screenshot
screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hacked News

ดาวน์โหลดไฟล์ส่วนขยาย 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
URL อย่างเป็นทางการ 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"
            ]
        }
    ]
}