Skip to content

Instantly share code, notes, and snippets.

@seungwonpark
Created August 23, 2017 13:44
Show Gist options
  • Save seungwonpark/27d8a2abcb2bcb8d83c67133ad098257 to your computer and use it in GitHub Desktop.
Save seungwonpark/27d8a2abcb2bcb8d83c67133ad098257 to your computer and use it in GitHub Desktop.
CF Hint Hider
// ==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