Hacker News Comment Highlighter

Highlights unread comments in Hacker News threads

Qu'est-ce que Hacker News Comment Highlighter ?

Hacker News Comment Highlighter est une extension Chrome développée par Jonathan Bergknoff, et sa fonction principale est "Highlights unread comments in Hacker News threads".

Captures d'Écran de l'Extension

screenshot

Télécharger le fichier CRX de l'extension Hacker News Comment Highlighter

Téléchargez les fichiers d'extension Hacker News Comment Highlighter au format crx, installez manuellement les extensions Chrome dans le navigateur ou partagez les fichiers crx avec des amis pour installer facilement les extensions Chrome.

Instructions d'Utilisation de l'Extension

                        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.                    

Informations de Base sur l'Extension

Nom Hacker News Comment Highlighter Hacker News Comment Highlighter
ID acgehogfllndeafpieloojhdmpffbjnb
URL Officiel https://chromewebstore.google.com/detail/hacker-news-comment-highl/acgehogfllndeafpieloojhdmpffbjnb
Description Highlights unread comments in Hacker News threads
Taille du Fichier 13.14 KB
Nombre d'Installations 45
Version Actuelle 1.0.1
Dernière Mise à Jour 2015-08-06
Date de Publication 2015-08-06
Évaluation 5.00/5 Total 1 Évaluations
Développeur Jonathan Bergknoff
Type de Paiement free
Site Web de l'Extension https://github.com/jbergknoff/hn-comment-highlighter
Langues Prises en Charge 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"
    ]
}