mraron / Codeforces Show Bad Comments

// ==UserScript==
// @name         Codeforces Show Bad Comments
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Combat the evil xd
// @author       mraron
// @match        http://codeforces.com/blog/entry/*
// @grant        none
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';
    $(".show-bad-comment-link").click(); $(".comment-table").removeClass("comment-too-bad").removeClass("comment-bad");
})();