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 द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Focus on the really fresh and unread news in YCombinator - Hacker News. Relocate read items into the bottom of the website."।

एक्सटेंशन स्क्रीनशॉट्स

screenshot
screenshot

एक्सएक्स एक्सटेंशन CRX फ़ाइल डाउनलोड करें

crx प्रारूप में Hacker News Stack एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ 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"
    }
}