New Comments

Shows new comments posted on reddit and Hacker News since you last visited a comment thread.

Что такое New Comments?

New Comments - это расширение Chrome, разработанное Cédric Beust, и его основная функция - "Shows new comments posted on reddit and Hacker News since you last visited a comment thread.".

Снимки экрана расширения

screenshot

Скачать файл CRX расширения New Comments

Скачайте файлы расширений New Comments в формате crx, установите расширения Chrome вручную в браузере или поделитесь файлами crx с друзьями, чтобы легко установить расширения Chrome.

Инструкции по использованию расширения

                        This extension remembers last time you visited comment threads on reddit and Hacker News and highlights the comments that were posted since your last visit. If you turn on Chrome sync, this setting will be shared across all your browsers so you can keep track of discussions even on multiple computers.                    

Основная информация о расширении

Название New Comments New Comments
ID jldpfbgmbdnnjdgohphppjnpadogdime
Официальный URL https://chromewebstore.google.com/detail/new-comments/jldpfbgmbdnnjdgohphppjnpadogdime
Описание Shows new comments posted on reddit and Hacker News since you last visited a comment thread.
Размер файла 41 KB
Количество установок 135
Текущая Версия 15
Последнее Обновление 2022-09-01
Дата публикации 2016-02-12
Рейтинг 3.83/5 Всего 6 оценок
Разработчик Cédric Beust
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "version": "15",
    "name": "New Comments",
    "description": "Shows new comments posted on reddit and Hacker News since you last visited a comment thread.",
    "author": "Cedric Beust",
    "short_name": "NewComments",
    "manifest_version": 2,
    "permissions": [
        "http:\/\/reddit.com\/",
        "https:\/\/reddit.com\/",
        "http:\/\/news.ycombinator.com\/",
        "https:\/\/news.ycombinator.com\/",
        "storage"
    ],
    "browser_action": {
        "default_icon": "icon.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.11.1.min.js",
                "NewComments.js"
            ]
        }
    ],
    "web_accessible_resources": [
        "selector.html"
    ]
}