Hacker News Comment Highlighter

Highlights unread comments in Hacker News threads

Hacker News Comment Highlighterคืออะไร?

Hacker News Comment Highlighter เป็นส่วนขยายของ Chrome ที่พัฒนาโดย Jonathan Bergknoff และคุณลักษณะหลักของมันคือ "Highlights unread comments in Hacker News threads"

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

screenshot

ดาวน์โหลดไฟล์ CRX ของส่วนขยาย Hacker News Comment Highlighter

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

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

                        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.                    

ข้อมูลพื้นฐานของส่วนขยาย

ชื่อ Hacker News Comment Highlighter Hacker News Comment Highlighter
ID acgehogfllndeafpieloojhdmpffbjnb
URL อย่างเป็นทางการ https://chromewebstore.google.com/detail/hacker-news-comment-highl/acgehogfllndeafpieloojhdmpffbjnb
คำอธิบาย Highlights unread comments in Hacker News threads
ขนาดไฟล์ 13.14 KB
จำนวนการติดตั้ง 45
เวอร์ชันปัจจุบัน 1.0.1
อัปเดตครั้งล่าสุด 2015-08-06
วันที่เผยแพร่ 2015-08-06
คะแนน 5.00/5 รวมทั้งหมด 1 คะแนน
ผู้พัฒนา Jonathan Bergknoff
ประเภทการชำระเงิน free
เว็บไซต์ส่วนขยาย https://github.com/jbergknoff/hn-comment-highlighter
ภาษาที่รองรับ 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"
    ]
}