Hacker News: Mark All Read

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

Hacker News: Mark All Readคืออะไร?

Hacker News: Mark All Read เป็นส่วนขยายของ Chrome ที่พัฒนาโดย https://wrgms.com และคุณลักษณะหลักของมันคือ "Save time on HN by marking read the titles and comments you already scanned. And more."

ภาพหน้าจอของส่วนขยาย

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hacker News: Mark All Read

ดาวน์โหลดไฟล์ส่วนขยาย Hacker News: Mark All Read ในรูปแบบ crx และติดตั้งส่วนขยาย Chrome ด้วยตนเองในเบราว์เซอร์หรือแชร์ไฟล์ crx กับเพื่อนๆ เพื่อติดตั้งส่วนขยาย Chrome อย่างง่ายดาย

คำแนะนำในการใช้ส่วนขยาย

                        Note: this is a fork of the original extension by  Dan Mazzini (danmaz74). The original extension seemed unmaintained, so I just forked in order to keep up with changes to HN site over the years. All the credit goes to the original author [1][2].

Code available here:
https://github.com/guiambros/HNMarkAllRead

Fixed post HN changes on June 1, 2016. Tested and working as of June 2021.

[1] http://danmaz74.me/2012/10/15/save-even-more-time-on-hacker-news/
[2] https://github.com/danmaz74/HNMarkAllRead

Original description:
--
Save time on HN by marking read the titles and comments you already scanned
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 fghfahcbhpdeeaaofcefaoodmfejieok
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hacker-news-mark-all-read/fghfahcbhpdeeaaofcefaoodmfejieok
คำอธิบาย Save time on HN by marking read the titles and comments you already scanned. And more.
ขนาดไฟล์ 77.37 KB
จำนวนการติดตั้ง 38
เวอร์ชันปัจจุบัน 1.50
อัปเดตครั้งล่าสุด 2021-06-29
วันที่เผยแพร่ 2016-06-07
คะแนน 5.00/5 รวมทั้งหมด 2 คะแนน
ผู้พัฒนา https://wrgms.com
อีเมล [email protected]
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://wrgms.com
URL หน้าช่วยเหลือ https://github.com/guiambros/HNMarkAllRead
ภาษาที่รองรับ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Hacker News: Mark All Read",
    "version": "1.50",
    "manifest_version": 2,
    "description": "Save time on HN by marking read the titles and comments you already scanned. And more.",
    "content_scripts": [
        {
            "matches": [
                "*:\/\/news.ycombinator.com\/*"
            ],
            "css": [
                "styles.css"
            ],
            "js": [
                "jquery.min.js",
                "script.js"
            ]
        }
    ],
    "icons": {
        "128": "images\/HNMarkAllRead.png"
    },
    "web_accessible_resources": [
        "images\/HNMarkAllRead-18.png",
        "styles.css"
    ]
}