Comment Killer

Removes comment sections from most webpages.

O que é Comment Killer?

Comment Killer é uma extensão do Chrome desenvolvida por Sundog Software, e sua principal característica é "Removes comment sections from most webpages.".

Capturas de Tela da Extensão

screenshot

Baixar o arquivo CRX da Extensão Comment Killer

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

                        Restore your faith in humanity! This extension looks for any sections that have "comment", "discussion", "disqus", or "conversation" in their name - and hides them. If Internet trolls get you down, this will make most of them just go away.

Block comments, and make Internet trolls disappear. Works with YouTube, CNN, Facebook, and pretty much everywhere else. Even pages that load comments dynamically can't escape Comment Killer.

To enable or disable Comment Killer while browsing, just click the "no trolls" icon in your browser bar.                    

Informações Básicas da Extensão

Nome Comment Killer Comment Killer
ID pempgkkicmgobgononeemlgeeiokimca
URL Oficial https://chromewebstore.google.com/detail/comment-killer/pempgkkicmgobgononeemlgeeiokimca
Descrição Removes comment sections from most webpages.
Tamanho do Arquivo 708 KB
Contagem de Instalações 92
Versão Atual 1.1.0
Última Atualização 2020-07-07
Data de Publicação 2014-12-02
Classificação 3.60/5 Total de 5 Avaliações
Desenvolvedor Sundog Software
Email [email protected]
Tipo de Pagamento free
Site da Extensão http://nohatenews.com/introducing-comment-killer/
Idiomas Suportados en
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Comment Killer",
    "short_name": "Removes comment sections from most webpages.",
    "version": "1.1.0",
    "description": "Removes comment sections from most webpages.",
    "icons": {
        "16": "No-Troll-16.png",
        "32": "No-Troll-32.png",
        "48": "No-Troll-48.png",
        "128": "No-Troll-128.png"
    },
    "browser_action": {
        "default_icon": {
            "19": "No-Troll-19.png",
            "38": "No-Troll-38.png"
        },
        "default_title": "Comment Killer"
    },
    "permissions": [
        ""
    ],
    "background": {
        "scripts": [
            "background.js"
        ],
        "persistent": true
    },
    "content_scripts": [
        {
            "matches": [
                "*:\/\/*\/*"
            ],
            "js": [
                "jquery-2.1.1.min.js",
                "contentscript.js"
            ],
            "all_frames": true
        }
    ]
}