Death to comments!

Banish comments from your internet

¿Qué es Death to comments!?

Death to comments! es una extensión de Chrome desarrollada por Tom Chambers, y su función principal es "Banish comments from your internet".

Capturas de Pantalla de la Extensión

screenshot

Descargar Archivo CRX de la Extensión Death to comments!

Descarga archivos de extensión Death to 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

                        Are you sick and tired of reading through an endless stream of vitriol and lunacy? Is your worldview being poisoned by bizarre claims and unnecessary personal attacks?

Death to Comments is a chrome extension that blocks comments everywhere. Works on youtube and gakwer sites. Future features may include whitelisting.

This is beta software that I made in the past hour, there may be bugs and performance issues. Please email me at [email protected] with bugs and feature requests. I will try to be responsive.

Source code for the comment blocker is available at: https://github.com/tomchambers2/death_to_comments. You are welcome to contribute.                    

Información Básica de la Extensión

Nombre Death to comments! Death to comments!
ID khkoofdalhndgpihmjeabjljegaghbph
URL Oficial https://chromewebstore.google.com/detail/death-to-comments/khkoofdalhndgpihmjeabjljegaghbph
Descripción Banish comments from your internet
Tamaño del Archivo 4.68 KB
Cantidad de Instalaciones 15
Versión Actual 0.1
Última Actualización 2014-08-20
Fecha de Publicación 2014-08-20
Calificación 5.00/5 Total de 1 Calificaciones
Desarrollador Tom Chambers
Tipo de Pago free
Idiomas Soportados en-GB
manifest.json
{
    "update_url": "https:\/\/clients2.google.com\/service\/update2\/crx",
    "manifest_version": 2,
    "name": "Death to comments!",
    "description": "Banish comments from your internet",
    "version": "0.1",
    "permissions": [
        "http:\/\/*\/*",
        "https:\/\/*\/*"
    ],
    "browser_action": {
        "default_icon": "icon.png",
        "default_popup": "popup.html"
    },
    "content_scripts": [
        {
            "matches": [
                "http:\/\/*\/*",
                "https:\/\/*\/*"
            ],
            "js": [
                "contentscript.js"
            ],
            "run_at": "document_idle",
            "all_frames": false
        }
    ]
}