YouTube Comment Remover

A very simple extension to hide all YouTube comments.

Was ist YouTube Comment Remover?

YouTube Comment Remover ist eine Chrome-Erweiterung, die von Tim Stephani entwickelt wurde, und ihr Hauptmerkmal ist "A very simple extension to hide all YouTube comments.".

Erweiterungsscreenshots

screenshot

YouTube Comment Remover-Erweiterungs-CRX-Datei herunterladen

Laden Sie YouTube Comment Remover-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

                        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                    

Grundlegende Informationen zur Erweiterung

Name YouTube Comment Remover YouTube Comment Remover
ID nglipklighejjehapaodhmipldpljobp
Offizielle URL https://chrome.google.com/webstore/detail/youtube-comment-remover/nglipklighejjehapaodhmipldpljobp
Beschreibung A very simple extension to hide all YouTube comments.
Dateigröße 33.33 KB
Installationsanzahl 97
Aktuelle Version 1.0
Letztes Update 2015-03-16
Veröffentlichungsdatum 2015-03-16
Bewertung 3.67/5 Insgesamt 3 Bewertungen
Entwickler Tim Stephani
Zahlungsart free
Unterstützte Sprachen 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"
            ]
        }
    ]
}