Death to comments!

Banish comments from your internet

Cos'è Death to comments!?

Death to comments! è un'estensione di Chrome sviluppata da Tom Chambers, e la sua funzione principale è "Banish comments from your internet".

Screenshot dell'Estensione

screenshot

Scarica il file CRX dell'estensione Death to comments!

Scarica i file di estensione Death to comments! in formato crx, installa manualmente le estensioni di Chrome nel browser o condividi i file crx con gli amici per installare facilmente le estensioni di Chrome.

Istruzioni per l'Uso dell'Estensione

                        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.                    

Informazioni di Base sull'Estensione

Nome Death to comments! Death to comments!
ID khkoofdalhndgpihmjeabjljegaghbph
URL Ufficiale https://chromewebstore.google.com/detail/death-to-comments/khkoofdalhndgpihmjeabjljegaghbph
Descrizione Banish comments from your internet
Dimensione del File 4.68 KB
Conteggio Installazioni 15
Versione Corrente 0.1
Ultimo Aggiornamento 2014-08-20
Data di Pubblicazione 2014-08-20
Valutazione 5.00/5 Totale 1 Valutazioni
Sviluppatore Tom Chambers
Tipo di Pagamento free
Lingue Supportate 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
        }
    ]
}