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?

Hacker News Stack是由https://rogeriopvl.com開發的Chrome擴展程式,該擴展的主要功能是“Focus on the really fresh and unread news in YCombinator - Hacker News. Relocate read items into the bottom of the website.”。

擴展截圖

screenshot
screenshot

下載Hacker News Stack擴展crx文件

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

擴展使用說明

                        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.                    

擴展基本資訊

名稱 Hacker News Stack Hacker News Stack
ID jcdfcpjmfpbnimkdackbcmdgdpoeklio
官方網址 https://chromewebstore.google.com/detail/hacker-news-stack/jcdfcpjmfpbnimkdackbcmdgdpoeklio
簡介 Focus on the really fresh and unread news in YCombinator - Hacker News. Relocate read items into the bottom of the website.
檔案大小 33.77 KB
安裝次數 414
目前版本 1.0.0
更新時間 2017-07-23
上架時間 2017-07-23
評分 3.75/5 共 12 次評分
開發者 https://rogeriopvl.com
付費類型 free
擴展官網 https://github.com/rogeriopvl/hnstack
支援的語言 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"
    }
}