Hacker News Stack

Focus on the really fresh and unread news in YCombinator - Hacker News. Relocate read items into the bottom of the website.

Hacker News Stack là gì?

Hacker News Stack là một tiện ích mở rộng Chrome được phát triển bởi https://rogeriopvl.com, và tính năng chính của nó là "Focus on the really fresh and unread news in YCombinator - Hacker News. Relocate read items into the bottom of the website.".

Ả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 Stack

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

                        This extension will take the news items you have clicked on to the bottom of the hacker news website, making you focus on the unread items. This works only in the hacker news website, and is it acts on the current batch of items being displayed.

The ycombinator's hacker news website is a mess in terms of semantic html, so please feel free to report any bugs to help me improve this extension.

PS. If you have other Hacker News extensions installed that change in anyway the html of the page, this extension won't work!

Known issues:

- If you open a link with right-click -> "open link in new tab" the item doesn't get marked as read. Use middle click instead (Cmd+click on mac) - Currently working on this.                    

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

Tên Hacker News Stack Hacker News Stack
ID jcdfcpjmfpbnimkdackbcmdgdpoeklio
URL Chính Thức https://chromewebstore.google.com/detail/hacker-news-stack/jcdfcpjmfpbnimkdackbcmdgdpoeklio
Mô tả Focus on the really fresh and unread news in YCombinator - Hacker News. Relocate read items into the bottom of the website.
Kích Thước Tệp 33.77 KB
Số Lần Cài Đặt 414
Phiên Bản Hiện Tại 1.0.0
Cập Nhật Lần Cuối 2017-07-23
Ngày Phát Hành 2017-07-23
Đánh Giá 3.75/5 Tổng số 12 Đánh Giá
Nhà Phát Triển https://rogeriopvl.com
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/rogeriopvl/hnstack
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hacker News Stack",
    "short_name": "hnstack",
    "version": "1.0.0",
    "description": "Focus on the really fresh and unread news in YCombinator - Hacker News. Relocate read items into the bottom of the website.",
    "icons": {
        "16": "images\/hn16.png",
        "48": "images\/hn48.png",
        "128": "images\/hn128.png"
    },
    "background": {
        "page": "background.html"
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/news.ycombinator.com\/",
                "*:\/\/news.ycombinator.com\/news",
                "*:\/\/news.ycombinator.com\/newest",
                "*:\/\/news.ycombinator.com\/x*"
            ],
            "js": [
                "js\/hnstack.js"
            ],
            "run_at": "document_end"
        }
    ],
    "page_action": {
        "default_title": "Hacker News Stack",
        "default_icon": "images\/hn19.png",
        "default_popup": "popup.html"
    }
}