Hacker News Comment Highlighter

Highlights unread comments in Hacker News threads

Co to jest Hacker News Comment Highlighter?

Hacker News Comment Highlighter to rozszerzenie Chrome opracowane przez Jonathan Bergknoff, a jego główną funkcją jest „Highlights unread comments in Hacker News threads”.

Zrzuty ekranu rozszerzenia

screenshot

Pobierz plik CRX rozszerzenia Hacker News Comment Highlighter

Pobierz pliki rozszerzeń Hacker News Comment Highlighter w formacie crx, zainstaluj ręcznie rozszerzenia Chrome w przeglądarce lub udostępnij pliki crx znajomym, aby łatwo zainstalować rozszerzenia Chrome.

Instrukcja Użytkowania Rozszerzenia

                        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.                    

Podstawowe informacje o rozszerzeniu

Nazwa Hacker News Comment Highlighter Hacker News Comment Highlighter
ID acgehogfllndeafpieloojhdmpffbjnb
Oficjalny URL https://chromewebstore.google.com/detail/hacker-news-comment-highl/acgehogfllndeafpieloojhdmpffbjnb
Opis Highlights unread comments in Hacker News threads
Rozmiar pliku 13.14 KB
Liczba instalacji 45
Aktualna Wersja 1.0.1
Ostatnia Aktualizacja 2015-08-06
Data Publikacji 2015-08-06
Ocena 5.00/5 Łącznie 1 Oceny
Deweloper Jonathan Bergknoff
Typ Płatności free
Strona Rozszerzenia https://github.com/jbergknoff/hn-comment-highlighter
Obsługiwane Języki 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"
    ]
}