Death to comments!

Banish comments from your internet

Was ist Death to comments!?

Death to comments! ist eine Chrome-Erweiterung, die von Tom Chambers entwickelt wurde, und ihr Hauptmerkmal ist "Banish comments from your internet".

Erweiterungsscreenshots

screenshot

Death to comments!-Erweiterungs-CRX-Datei herunterladen

Laden Sie Death to comments!-Erweiterungsdateien im crx-Format herunter, installieren Sie Chrome-Erweiterungen manuell im Browser oder teilen Sie die crx-Dateien mit Freunden, um Chrome-Erweiterungen einfach zu installieren.

Anleitung zur Verwendung der Erweiterung

                        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.                    

Grundlegende Informationen zur Erweiterung

Name Death to comments! Death to comments!
ID khkoofdalhndgpihmjeabjljegaghbph
Offizielle URL https://chromewebstore.google.com/detail/death-to-comments/khkoofdalhndgpihmjeabjljegaghbph
Beschreibung Banish comments from your internet
Dateigröße 4.68 KB
Installationsanzahl 15
Aktuelle Version 0.1
Letztes Update 2014-08-20
Veröffentlichungsdatum 2014-08-20
Bewertung 5.00/5 Insgesamt 1 Bewertungen
Entwickler Tom Chambers
Zahlungsart free
Unterstützte Sprachen 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
        }
    ]
}