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"
    ]
}