YouTube Comment Remover

A very simple extension to hide all YouTube comments.

O que é YouTube Comment Remover?

YouTube Comment Remover é uma extensão do Chrome desenvolvida por Tim Stephani, e sua principal característica é "A very simple extension to hide all YouTube comments.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão YouTube Comment Remover

Baixe arquivos de extensão YouTube Comment Remover 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

                        After realizing how horrible the comments section of YouTube is, I decided to create this super simple extension to automatically hide them.

Source available here: https://github.com/timmystephani/youtube_comment_remover

History
---------
v1.0 - First version                    

Informações Básicas da Extensão

Nome YouTube Comment Remover YouTube Comment Remover
ID nglipklighejjehapaodhmipldpljobp
URL Oficial https://chrome.google.com/webstore/detail/youtube-comment-remover/nglipklighejjehapaodhmipldpljobp
Descrição A very simple extension to hide all YouTube comments.
Tamanho do Arquivo 33.33 KB
Contagem de Instalações 97
Versão Atual 1.0
Última Atualização 2015-03-16
Data de Publicação 2015-03-16
Classificação 3.67/5 Total de 3 Avaliações
Desenvolvedor Tim Stephani
Tipo de Pagamento free
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "name": "YouTube Comment Remover",
    "description": "A very simple extension to hide all YouTube comments.",
    "version": "1.0",
    "manifest_version": 2,
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*.youtube.com\/*"
            ],
            "js": [
                "jquery-2.1.3.min.js",
                "main.js"
            ]
        }
    ]
}