Hacker News Shortcut

Browse Hacker News with your keyboard!

Hacker News Shortcutคืออะไร?

Hacker News Shortcut เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://xinglab.com และคุณลักษณะหลักของมันคือ "Browse Hacker News with your keyboard!"

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

screenshot
screenshot
screenshot

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

ดาวน์โหลดไฟล์ส่วนขยาย Hacker News Shortcut ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Version 1.7 details - 9/14/14
1, Kept up with HN changes - login link and "Next page" link on the first page

Version 1.6 details:
1, fixed bugs, improved stability
2, now fully support "Show HN" area
3, now fully support "Jobs" area
3, added the short key to go to "threads" area - 

7/6/2014

Version 1.5 details:
1, bug fix: messed-up layout of "Show HN" 1st page

Version 1.4 details:
1, bug fix: key press conflicts on textareas

Version 1.3 details:
1, bug fix: key press conflict on "comment" page


Introduction:
Hackercut is a Chrome extension that powers full keyboard navigation of Hacker News(https://news.ycombinator.com).

The source code and a better formatted instruction page of this extension is on GitHub: https://github.com/zinanxing/Hackercut

After installing the extension, while on Hacker News website, press "?" key to bring up the instructions.

Features:

1, Arrow Navigation
Arrow Navigation is the most powerful feature of this extension, you can go through the story links using just your up/right arrow keys and open/vote up/view author/view comments as you like.

Press "Tab" to turn on arrow navigation mode, you should see a green arrow to the left of the first link: arrow

You can move the arrow up and down using your arrow keys, then you may choose to:

ctrl(⌘)+enter	open current link in new tab
v	vote it up
a	select its submitter(which you can then use ctrl+enter to open in new tab)
c	select its comments
arrow

And pressing "esc" key will turn off Arrow Navigation mode.


2, Page Switching
Switching pages with Hackercut is just one key press away:

right arrow key	next page
n	"newest" page
m	"comments" page*
k	"ask" page
j	"jobs" page*
s	"submit" page
h	Hacker News front page
l	"login" page

*arrow navigation does not work on "comments" and "jobs" pages at this moment.


I hope you can better enjoy Hacker News with Hackercut.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Hacker News Shortcut Hacker News Shortcut
ID dmiimkldokblocpmleogaeohkbffnobo
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hacker-news-shortcut/dmiimkldokblocpmleogaeohkbffnobo
คำอธิบาย Browse Hacker News with your keyboard!
ขนาดไฟล์ 54.89 KB
จำนวนการติดตั้ง 18
เวอร์ชันปัจจุบัน 1.7
อัปเดตครั้งล่าสุด 2014-09-14
วันที่เผยแพร่ 2014-09-14
คะแนน 5.00/5 รวมทั้งหมด 3 คะแนน
ผู้พัฒนา https://xinglab.com
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย http://xinglab.com/hackercut-is-released/
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hacker News Shortcut",
    "short_name": "Hackercut",
    "description": "Browse Hacker News with your keyboard!",
    "author": "Zinan Xing",
    "version": "1.7",
    "background": {
        "scripts": [
            "js\/background.js"
        ],
        "persistent": false
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/news.ycombinator.com\/*"
            ],
            "css": [
                "css\/magnific-popup.css",
                "css\/extension.css"
            ],
            "js": [
                "js\/lib\/jquery-1.11.1.min.js",
                "js\/lib\/jquery.magnific-popup.min.js",
                "js\/extension.js"
            ],
            "run_at": "document_start"
        }
    ],
    "icons": {
        "16": "images\/Hackercut-16.png",
        "48": "images\/Hackercut-48.png",
        "128": "images\/Hackercut-128.png"
    },
    "permissions": [
        "https:\/\/news.ycombinator.com\/",
        "declarativeContent"
    ],
    "page_action": {
        "default_icon": "images\/Hackercut-128.png"
    }
}