Youtube Popup Comments

A way to see comments while watching videos, without scrolling away from it

Что такое Youtube Popup Comments?

Youtube Popup Comments - это расширение Chrome, разработанное Armaan Shah, и его основная функция - "A way to see comments while watching videos, without scrolling away from it".

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

screenshot

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

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

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

                        Ever wanted to read the comments on a YouTube video, without scrolling down to the comments section and missing any of the action?
With this extension, you can.
Simply click on the button added to the top of the YouTube UI (next to the watch later button), and scroll through the comments using the newly created pop-up window that appears on top of your video.
Click on the button again to close the pop-up when you want to focus on your video.                    

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

Название Youtube Popup Comments Youtube Popup Comments
ID khlcpbakdpgeghfadigjkkmmhdccfmkk
Официальный URL https://chromewebstore.google.com/detail/youtube-popup-comments/khlcpbakdpgeghfadigjkkmmhdccfmkk
Описание A way to see comments while watching videos, without scrolling away from it
Размер файла 24.61 KB
Количество установок 91
Текущая Версия 1.0
Последнее Обновление 2021-08-18
Дата публикации 2021-08-18
Рейтинг 5.00/5 Всего 2 оценок
Разработчик Armaan Shah
Электронная почта [email protected]
Тип оплаты free
URL страницы политики конфиденциальности https://raw.githubusercontent.com/DiamondDeadMaw/Youtube-Popup-Comments/main/Privacy%20Policy.txt
Поддерживаемые языки en-US
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Youtube Popup Comments",
    "description": "A way to see comments while watching videos, without scrolling away from it",
    "version": "1.0",
    "manifest_version": 3,
    "background": {
        "service_worker": "background.js"
    },
    "permissions": [
        "activeTab",
        "tabs",
        "scripting"
    ],
    "host_permissions": [
        ""
    ],
    "content_scripts": [
        {
            "css": [
                "popupCommentsStyles.css"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ],
    "icons": {
        "16": "icon16.png",
        "48": "icon48.png",
        "128": "icon128.png"
    }
}