Hacker News Comment Highlighter

Highlights unread comments in Hacker News threads

Cos'è Hacker News Comment Highlighter?

Hacker News Comment Highlighter è un'estensione di Chrome sviluppata da Jonathan Bergknoff, e la sua funzione principale è "Highlights unread comments in Hacker News threads".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Hacker News Comment Highlighter

Scarica i file di estensione Hacker News Comment Highlighter in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Hacker News Comment Highlighter Hacker News Comment Highlighter
ID acgehogfllndeafpieloojhdmpffbjnb
URL Ufficiale https://chromewebstore.google.com/detail/hacker-news-comment-highl/acgehogfllndeafpieloojhdmpffbjnb
Descrizione Highlights unread comments in Hacker News threads
Dimensione del File 13.14 KB
Conteggio Installazioni 45
Versione Corrente 1.0.1
Ultimo Aggiornamento 2015-08-06
Data di Pubblicazione 2015-08-06
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Jonathan Bergknoff
Tipo di Pagamento free
Sito Web dell'Estensione https://github.com/jbergknoff/hn-comment-highlighter
Lingue Supportate 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"
    ]
}