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 파일 다운로드

크롬 확장 프로그램을 crx 형식으로 다운로드하여 브라우저에 수동으로 설치하거나 crx 파일을 친구들과 공유하여 쉽게 크롬 확장 프로그램을 설치하세요.

확장 프로그램 사용 설명서

                        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
공식 URL 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"
    }
}