Hacker News Comment Highlighter

Highlights unread comments in Hacker News threads

Apa itu Hacker News Comment Highlighter?

Hacker News Comment Highlighter adalah ekstensi Chrome yang dikembangkan oleh Jonathan Bergknoff, dan fitur utamanya adalah "Highlights unread comments in Hacker News threads".

Screenshot Ekstensi

screenshot

Unduh Berkas CRX Ekstensi Hacker News Comment Highlighter

Unduh file ekstensi Hacker News Comment Highlighter dalam format crx, pasang ekstensi Chrome secara manual di peramban, atau bagikan file crx dengan teman untuk menginstal ekstensi Chrome dengan mudah.

Petunjuk Penggunaan Ekstensi

                        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.                    

Informasi Dasar Ekstensi

Nama Hacker News Comment Highlighter Hacker News Comment Highlighter
ID acgehogfllndeafpieloojhdmpffbjnb
URL Resmi https://chromewebstore.google.com/detail/hacker-news-comment-highl/acgehogfllndeafpieloojhdmpffbjnb
Deskripsi Highlights unread comments in Hacker News threads
Ukuran File 13.14 KB
Jumlah Instalasi 45
Versi Saat Ini 1.0.1
Terakhir Diperbarui 2015-08-06
Tanggal Publikasi 2015-08-06
Penilaian 5.00/5 Total 1 Penilaian
Pengembang Jonathan Bergknoff
Tipe Pembayaran free
Situs Ekstensi https://github.com/jbergknoff/hn-comment-highlighter
Bahasa yang Didukung 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"
    ]
}