YouTube Comment Expander

This extension provides a fix for the bug that prevents 'Read More' from appearing on YouTube comments in Chromium-based browsers.

Что такое YouTube Comment Expander?

YouTube Comment Expander - это расширение Chrome, разработанное Joel Henke, и его основная функция - "This extension provides a fix for the bug that prevents 'Read More' from appearing on YouTube comments in Chromium-based browsers.".

Скачать файл CRX расширения YouTube Comment Expander

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

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

                        The bug that this extension fixes happens when you start watching a YouTube video and enter full screen before the comments load. The 'Read More' link will be missing for the first several long comments.

This extension allows you to read those longer comments without reloading the page or loading more comments.                    

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

Название YouTube Comment Expander YouTube Comment Expander
ID bknceopjdngnciilahnddipmpjgmpfhe
Официальный URL https://chromewebstore.google.com/detail/youtube-comment-expander/bknceopjdngnciilahnddipmpjgmpfhe
Описание This extension provides a fix for the bug that prevents 'Read More' from appearing on YouTube comments in Chromium-based browsers.
Размер файла 4.99 KB
Количество установок 88
Текущая Версия 1.0
Последнее Обновление 2017-08-26
Дата публикации 2017-08-26
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Joel Henke
Электронная почта [email protected]
Тип оплаты free
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "YouTube Comment Expander",
    "version": "1.0",
    "description": "This extension provides a fix for the bug that prevents 'Read More' from appearing on YouTube comments in Chromium-based browsers.",
    "author": "Joel Henke",
    "permissions": [
        "*:\/\/*.youtube.com\/*"
    ],
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "content.js"
            ]
        }
    ],
    "icons": {
        "48": "icon48.png",
        "128": "icon128.png"
    }
}