YT New Comments

Show youtube comments as 'Newest first' by default.

Что такое YT New Comments?

YT New Comments - это расширение Chrome, разработанное sunlight11111111, и его основная функция - "Show youtube comments as 'Newest first' by default.".

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

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

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

                        This is a quick attempt to provide an option that google/youtube does not - automatically showing comments in chronological order. This is basically a workaround that simply clicks the dropdown automatically so you don't have to. It is not very 'smart' in its current state but if enough interest is shown I might work on making it better. 

*update 3/29/15*

Yes, this is still being maintained. I appreciate your patience as I do not always notice right away when a major change to youtube breaks functionality.                    

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

Название YT New Comments YT New Comments
ID jlfeaohkkeiebbjlkaloihjmkmkmdlco
Официальный URL https://chrome.google.com/webstore/detail/yt-new-comments/jlfeaohkkeiebbjlkaloihjmkmkmdlco
Описание Show youtube comments as 'Newest first' by default.
Размер файла 151 KB
Количество установок 25
Текущая Версия 0.4
Последнее Обновление 2015-03-29
Дата публикации 2015-03-29
Рейтинг 3.29/5 Всего 17 оценок
Разработчик sunlight11111111
Тип оплаты free
Поддерживаемые языки en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YT New Comments",
    "version": "0.4",
    "manifest_version": 2,
    "description": "Show youtube comments as 'Newest first' by default.",
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "jquery-1.10.2.js",
                "2.js"
            ],
            "run_at": "document_idle",
            "all_frames": true
        }
    ]
}