Hacker News Enhancement Suite

Hacker News Enhanced.

Hacker News Enhancement Suite là gì?

Hacker News Enhancement Suite là một tiện ích mở rộng Chrome được phát triển bởi https://etcet.net, và tính năng chính của nó là "Hacker News Enhanced.".

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

screenshot
screenshot

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

Tải xuống các tệp mở rộng Hacker News Enhancement Suite 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

                        - Completely new style
- Easy access to all pages
- Enhanced comment threads
  - Collapsible comments
  - Link to parent
  - Display all comments on paginated threads
  - Highlight the original poster
- Show and highlight new comments since you last view a thread
- Highlight links once clicked to more easily identify what you've recently visited
- Redirect back to the front page upon hitting an expired link
- New smooth and scalable up and down vote arrows
- Clickable links in text submissions and user profiles
- Display how many times you've upvoted each user
- Graphs on polls
- Ability to tag users
- Keyboard controls on index pages:
  j - Next item
  k - Previous item
  o - Open story
  l - Open story in a new tab
  p - View comments
  c - View comments in a new tab
  b - Open both the comments and the story in new tabs

View/fork/fix code on github: https://github.com/etcet/HNES                    

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

Tên Hacker News Enhancement Suite Hacker News Enhancement Suite
ID bappiabcodbpphnojdiaddhnilfnjmpm
URL Chính Thức https://chromewebstore.google.com/detail/hacker-news-enhancement-s/bappiabcodbpphnojdiaddhnilfnjmpm
Mô tả Hacker News Enhanced.
Kích Thước Tệp 75.14 KB
Số Lần Cài Đặt 4,496
Phiên Bản Hiện Tại 1.6.0.3
Cập Nhật Lần Cuối 2023-01-02
Ngày Phát Hành 2018-09-14
Đánh Giá 4.43/5 Tổng số 89 Đánh Giá
Nhà Phát Triển https://etcet.net
Email [email protected]
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/etcet/HNES
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hacker News Enhancement Suite",
    "short_name": "HNES",
    "version": "1.6.0.3",
    "description": "Hacker News Enhanced.",
    "manifest_version": 2,
    "background": {
        "scripts": [
            "background.js"
        ]
    },
    "permissions": [
        "storage",
        "unlimitedStorage"
    ],
    "icons": {
        "16": "images\/icon-16.png",
        "48": "images\/icon-48.png",
        "128": "images\/icon-128.png"
    },
    "content_scripts": [
        {
            "run_at": "document_start",
            "css": [
                "style.css"
            ],
            "matches": [
                "http:\/\/news.ycombinator.com\/*",
                "https:\/\/news.ycombinator.com\/*",
                "http:\/\/news.ycombinator.net\/*",
                "https:\/\/news.ycombinator.net\/*",
                "http:\/\/hackerne.ws\/*",
                "https:\/\/hackerne.ws\/*",
                "http:\/\/news.ycombinator.org\/*",
                "https:\/\/news.ycombinator.org\/*"
            ]
        },
        {
            "run_at": "document_end",
            "all_frames": true,
            "css": [
                "style.css"
            ],
            "js": [
                "js\/jquery-3.2.1.min.js",
                "js\/linkify\/jquery.linkify-1.0.js",
                "js\/linkify\/plugins\/jquery.linkify-1.0-twitter.js",
                "js\/hn.js"
            ],
            "matches": [
                "http:\/\/news.ycombinator.com\/*",
                "https:\/\/news.ycombinator.com\/*",
                "http:\/\/news.ycombinator.net\/*",
                "https:\/\/news.ycombinator.net\/*",
                "http:\/\/hackerne.ws\/*",
                "https:\/\/hackerne.ws\/*",
                "http:\/\/news.ycombinator.org\/*",
                "https:\/\/news.ycombinator.org\/*"
            ]
        },
        {
            "matches": [
                "http:\/\/hckrnews.com\/*"
            ],
            "run_at": "document_end",
            "js": [
                "js\/jquery-3.2.1.min.js",
                "js\/hn.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/spin.gif",
        "images\/unvote.gif",
        "images\/tag.svg",
        "templates\/comment.html"
    ]
}