Created
August 23, 2017 13:44
-
-
Save seungwonpark/27d8a2abcb2bcb8d83c67133ad098257 to your computer and use it in GitHub Desktop.
CF Hint Hider
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name CF Hint Hider | |
// @namespace http://tampermonkey.net/ | |
// @version 0.1 | |
// @description Hide algorithm hint at Codeforces | |
// @author Seungwon Park (veydpz) | |
// @match http://codeforces.com/problemset | |
// @grant none | |
// ==/UserScript== | |
(function() { | |
'use strict'; | |
$('*').filter(function() { | |
return $(this).css('padding-top') == '1px'; | |
}).hide(); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment