Hacker News: Mark All Read

Save time on HN by marking read the titles and comments you already scanned

Hacker News: Mark All Read क्या है?

Hacker News: Mark All Read Dan Mazzini (danmaz74) द्वारा विकसित एक क्रोम एक्सटेंशन है, और इसकी मुख्य विशेषता है "Save time on HN by marking read the titles and comments you already scanned"।

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

screenshot
screenshot
screenshot
screenshot
screenshot

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

crx प्रारूप में Hacker News: Mark All Read एक्सटेंशन फ़ाइलें डाउनलोड करें, ब्राउज़र में क्रोम एक्सटेंशन को मैन्युअल रूप से स्थापित करें या दोस्तों के साथ crx फ़ाइलों को साझा करें ताकि क्रोम एक्सटेंशन को आसानी से स्थापित किया जा सके।

एक्सटेंशन उपयोग निर्देश

                        Use this extension to mark all news items in a Hacker News listing page as read. This way, when you reload the page, you will be able to immediately spot the new items that you haven't scanned yet, because only those new items links will show a "not visited" color. You can also hide the items you marked as read.

The data about marked as read items is stored on your local browser and is shared between HN pages: If you mark an item as read on the "news" page and it later makes it into the home, you will see it as read in the home too.

You can also choose to follow the comments of a news item: If you do so, the item will appear (with a different color) in the home page even if it was marked as read. You can mark the comments as read, and read the number of unread comments in the home page.

Last but not least, you can collapse comment threads, and show the parent of a comment you're reading by hovering on the "show parent" link. This way following discussions with lots of comments becomes easier.

Enjoy!                    

एक्सटेंशन की मूल जानकारी

नाम Hacker News: Mark All Read Hacker News: Mark All Read
ID ogfbcfkihdkplelnaenpgkhnkpoaggjc
आधिकारिक URL https://chromewebstore.google.com/detail/hacker-news-mark-all-read/ogfbcfkihdkplelnaenpgkhnkpoaggjc
विवरण Save time on HN by marking read the titles and comments you already scanned
फ़ाइल का आकार 43.21 KB
स्थापना संख्या 222
वर्तमान संस्करण 1.4
अंतिम अपडेट 2013-03-13
प्रकाशन तिथि 2013-03-13
रेटिंग 4.27/5 कुल 11 रेटिंग्स
डेवलपर Dan Mazzini (danmaz74)
भुगतान के प्रकार free
एक्सटेंशन वेबसाइट http://danmaz74.me/
सहायता पृष्ठ URL http://danmaz74.me/2012/05/27/introducing-hacker-news-mark-all-read-for-chrome/
समर्थित भाषाएँ en
manifest.json
{
    "update_url": "http:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hacker News: Mark All Read",
    "version": "1.4",
    "manifest_version": 2,
    "description": "Save time on HN by marking read the titles and comments you already scanned",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/news.ycombinator.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery.min.js",
                "script.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "images\/HNMarkAllRead-18.png",
        "styles.css"
    ],
    "icons": {
        "128": "images\/HNMarkAllRead.png"
    }
}