Greasy Fork is available in English.

Hide comments on 20min.ch

The comments on 20min.ch are trash, hide them.

// ==UserScript==
// @name         Hide comments on 20min.ch
// @namespace    http://tampermonkey.net/
// @version      1
// @description  The comments on 20min.ch are trash, hide them.
// @author       Tripy
// @match        https://www.20min.ch/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    var elm = document.getElementById('talkback');
    elm.style.display="none";
})();