Comments Sidebar for Youtube

Allows you to watch videos and read comments at the same time on Youtube.

O que é Comments Sidebar for Youtube?

Comments Sidebar for Youtube é uma extensão do Chrome desenvolvida por tberghuis, e sua principal característica é "Allows you to watch videos and read comments at the same time on Youtube.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Comments Sidebar for Youtube

Baixe arquivos de extensão Comments Sidebar for Youtube 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

                        Chrome Extension to watch and read comments at the same time on Youtube.

Features a draggable divider to resize the player and the sidebar.

Source code available: https://github.com/tberghuis/watch-and-read-comments-for-youtube                    

Informações Básicas da Extensão

Nome Comments Sidebar for Youtube Comments Sidebar for Youtube
ID cgijphidahihhjphcfklefeknhemmdgh
URL Oficial https://chromewebstore.google.com/detail/comments-sidebar-for-yout/cgijphidahihhjphcfklefeknhemmdgh
Descrição Allows you to watch videos and read comments at the same time on Youtube.
Tamanho do Arquivo 42.12 KB
Contagem de Instalações 7,932
Versão Atual 0.6.0
Última Atualização 2023-07-24
Data de Publicação 2019-09-24
Classificação 4.60/5 Total de 57 Avaliações
Desenvolvedor tberghuis
Email [email protected]
Tipo de Pagamento free
Site da Extensão https://github.com/tberghuis/watch-and-read-comments-for-youtube
URL da Página de Ajuda https://github.com/tberghuis/watch-and-read-comments-for-youtube/issues
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "Comments Sidebar for Youtube",
    "version": "0.6.0",
    "manifest_version": 3,
    "description": "Allows you to watch videos and read comments at the same time on Youtube.",
    "icons": {
        "16": "img\/icon.16.png",
        "32": "img\/icon.32.png",
        "48": "img\/icon.48.png",
        "128": "img\/icon.128.png"
    },
    "author": "tberghuis",
    "homepage_url": "https:\/\/github.com\/tberghuis\/watch-and-read-comments-for-youtube",
    "permissions": [
        "storage"
    ],
    "content_scripts": [
        {
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ],
            "run_at": "document_end",
            "css": [
                "content\/vite.css"
            ],
            "js": [
                "content.js",
                "content\/vite.js"
            ]
        }
    ],
    "background": {
        "service_worker": "background.js"
    },
    "action": {
        "default_popup": "popup.html"
    },
    "web_accessible_resources": [
        {
            "resources": [
                "inject-vite.js"
            ],
            "matches": [
                "https:\/\/www.youtube.com\/*"
            ]
        }
    ]
}