NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==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"); })();