Hacker News Comment Highlighter

Highlights unread comments in Hacker News threads

Hacker News Comment Highlighter là gì?

Hacker News Comment Highlighter là một tiện ích mở rộng Chrome được phát triển bởi Jonathan Bergknoff, và tính năng chính của nó là "Highlights unread comments in Hacker News threads".

Ảnh Chụp Màn Hình của Tiện Ích Mở Rộng

screenshot

Tải xuống tệp CRX của tiện ích mở rộng Hacker News Comment Highlighter

Tải xuống các tệp mở rộng Hacker News Comment Highlighter dưới định dạng crx, cài đặt các tiện ích mở rộng Chrome bằng tay trong trình duyệt hoặc chia sẻ các tệp crx với bạn bè để dễ dàng cài đặt các tiện ích mở rộng Chrome.

Hướng Dẫn Sử Dụng Tiện Ích Mở Rộng

                        This Chrome extension keeps track of which comments you've seen in a given Hacker News thread, and then highlights the new comments when you return to the page. This is useful when you are following an active thread and just want to read what's new.

This extension is open source. The source code is available at https://github.com/jbergknoff/hn-comment-highlighter.                    

Thông Tin Cơ Bản về Tiện Ích Mở Rộng

Tên Hacker News Comment Highlighter Hacker News Comment Highlighter
ID acgehogfllndeafpieloojhdmpffbjnb
URL Chính Thức https://chromewebstore.google.com/detail/hacker-news-comment-highl/acgehogfllndeafpieloojhdmpffbjnb
Mô tả Highlights unread comments in Hacker News threads
Kích Thước Tệp 13.14 KB
Số Lần Cài Đặt 45
Phiên Bản Hiện Tại 1.0.1
Cập Nhật Lần Cuối 2015-08-06
Ngày Phát Hành 2015-08-06
Đánh Giá 5.00/5 Tổng số 1 Đánh Giá
Nhà Phát Triển Jonathan Bergknoff
Loại Thanh Toán free
Trang Web Mở Rộng https://github.com/jbergknoff/hn-comment-highlighter
Ngôn Ngữ Được Hỗ Trợ en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Hacker News Comment Highlighter",
    "description": "Highlights unread comments in Hacker News threads",
    "version": "1.0.1",
    "icons": {
        "128": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "https:\/\/news.ycombinator.com\/item?*"
            ],
            "js": [
                "highlighter.js"
            ],
            "css": [
                "highlighter.css"
            ]
        }
    ],
    "permissions": [
        "storage"
    ]
}