Hacker News UX

Hacker News User Experience Enhancement

什麼是Hacker News UX?

Hacker News UX是由https://carina.app/hnux開發的Chrome擴展程式,該擴展的主要功能是“Hacker News User Experience Enhancement”。

擴展截圖

screenshot
screenshot
screenshot
screenshot
screenshot

下載Hacker News UX擴展crx文件

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

擴展使用說明

                        Hacker News UX v2, enhances your experience with Hacker News.

Check out the demo video, and screenshots to get a glimpse of the features!


User Preferences (font-size, column, dark/classic switch) is available by hovering your username, or login, link in the bottom-left corner.

1. Auto-Load, and Columns
Browse lists with auto-load, and columns, enhancing surfacing of interesting content.

2. Dynamic Reply
Reply to comments in-place, and without page-refresh.

3. Explore, with Profile Pop-Up, and Columns
Explore content with profile tooltips, and by opening threads, and profiles into columns, and without managing tabs, or losing progress.

4. Secure, and Private

5. History

Hacker News UX v1, was featured on Mashable.
http://mashable.com/2010/12/01/improve-hacker-news-ui/                    

擴展基本資訊

名稱 Hacker News UX Hacker News UX
ID chngbdmhgakoomomnnhfapkpbalpmhid
官方網址 https://chromewebstore.google.com/detail/hacker-news-ux/chngbdmhgakoomomnnhfapkpbalpmhid
簡介 Hacker News User Experience Enhancement
檔案大小 87.62 KB
安裝次數 764
目前版本 2.0.3
更新時間 2023-08-25
上架時間 2018-04-09
評分 4.08/5 共 24 次評分
開發者 https://carina.app/hnux
電子郵箱 [email protected]
付費類型 free
支援的語言 en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 3,
    "version": "2.0.3",
    "name": "Hacker News UX",
    "description": "Hacker News User Experience Enhancement",
    "web_accessible_resources": [
        {
            "resources": [
                "images\/ajax-loader-classic.gif",
                "images\/ajax-loader-dark.gif",
                "images\/ajax-loader-classic-01.gif",
                "images\/ajax-loader-classic-02.gif",
                "images\/votearrow.png",
                "images\/yc.png",
                ".\/dist\/ux.html"
            ],
            "matches": [
                "https:\/\/news.ycombinator.com\/*",
                "http:\/\/news.ycombinator.net\/*",
                "http:\/\/news.ycombinator.org\/*",
                "http:\/\/news.ycombinator.com\/*"
            ]
        }
    ],
    "background": {
        "service_worker": ".\/dist\/background.js"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/news.ycombinator.com\/*",
                "http:\/\/news.ycombinator.net\/*",
                "http:\/\/news.ycombinator.org\/*",
                "http:\/\/news.ycombinator.com\/*"
            ],
            "css": [
                ".\/dist\/style.css"
            ],
            "js": [
                ".\/dist\/build.js"
            ],
            "run_at": "document_end"
        }
    ],
    "host_permissions": [
        "https:\/\/news.ycombinator.com\/*",
        "http:\/\/news.ycombinator.net\/*",
        "http:\/\/news.ycombinator.org\/*",
        "http:\/\/news.ycombinator.com\/*"
    ],
    "permissions": [
        "unlimitedStorage"
    ]
}