Youtube Popup Comments

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

O que é Youtube Popup Comments?

Youtube Popup Comments é uma extensão do Chrome desenvolvida por Armaan Shah, e sua principal característica é "A way to see comments while watching videos, without scrolling away from it".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Youtube Popup Comments

Baixe arquivos de extensão Youtube Popup Comments no formato crx, instale manualmente as extensões do Chrome no navegador ou compartilhe os arquivos crx com amigos para instalar facilmente as extensões do Chrome.

Instruções de Uso da Extensão

                        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.                    

Informações Básicas da Extensão

Nome Youtube Popup Comments Youtube Popup Comments
ID khlcpbakdpgeghfadigjkkmmhdccfmkk
URL Oficial https://chromewebstore.google.com/detail/youtube-popup-comments/khlcpbakdpgeghfadigjkkmmhdccfmkk
Descrição A way to see comments while watching videos, without scrolling away from it
Tamanho do Arquivo 24.61 KB
Contagem de Instalações 91
Versão Atual 1.0
Última Atualização 2021-08-18
Data de Publicação 2021-08-18
Classificação 5.00/5 Total de 2 Avaliações
Desenvolvedor Armaan Shah
Email [email protected]
Tipo de Pagamento free
URL da Página de Política de Privacidade https://raw.githubusercontent.com/DiamondDeadMaw/Youtube-Popup-Comments/main/Privacy%20Policy.txt
Idiomas Suportados 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"
    }
}