Youtube Popup Comments

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

¿Qué es Youtube Popup Comments?

Youtube Popup Comments es una extensión de Chrome desarrollada por Armaan Shah, y su función principal es "A way to see comments while watching videos, without scrolling away from it".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Youtube Popup Comments

Descarga archivos de extensión Youtube Popup Comments en formato crx, instala manualmente las extensiones de Chrome en el navegador o comparte los archivos crx con amigos para instalar fácilmente las extensiones de Chrome.

Instrucciones de Uso de la Extensión

                        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.                    

Información Básica de la Extensión

Nombre Youtube Popup Comments Youtube Popup Comments
ID khlcpbakdpgeghfadigjkkmmhdccfmkk
URL Oficial https://chromewebstore.google.com/detail/youtube-popup-comments/khlcpbakdpgeghfadigjkkmmhdccfmkk
Descripción A way to see comments while watching videos, without scrolling away from it
Tamaño del Archivo 24.61 KB
Cantidad de Instalaciones 91
Versión Actual 1.0
Última Actualización 2021-08-18
Fecha de Publicación 2021-08-18
Calificación 5.00/5 Total de 2 Calificaciones
Desarrollador Armaan Shah
Correo electrónico [email protected]
Tipo de Pago free
URL de la Página de Política de Privacidad https://raw.githubusercontent.com/DiamondDeadMaw/Youtube-Popup-Comments/main/Privacy%20Policy.txt
Idiomas Soportados 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"
    }
}