Last active
November 9, 2015 10:11
-
-
Save imcoddy/36d904ab4edeb50c00c3 to your computer and use it in GitHub Desktop.
Enhance my leetcode experience
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 Leetcode Enhancer | |
// @namespace http://www.github.com/imcoddy | |
// @version 0.1.1 | |
// @description Enhance leetcode website | |
// @author imcoddy | |
// @match https://leetcode.com/problemset/algorithms/ | |
// @match https://leetcode.com/problems/* | |
// @match https://leetcode.com/tag/* | |
// @grant none | |
// ==/UserScript== | |
// hide locked problems | |
$('.fa-lock').parent().parent().hide(); | |
// hide sidebar except last one (tag) | |
$('.row.sidebar-module:not(:last-child)').each(function(i){ | |
$(this).hide(); | |
}); | |
$('#interviewed_div').hide(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment