Skip to content

Instantly share code, notes, and snippets.

@imcoddy
Last active November 9, 2015 10:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save imcoddy/36d904ab4edeb50c00c3 to your computer and use it in GitHub Desktop.
Save imcoddy/36d904ab4edeb50c00c3 to your computer and use it in GitHub Desktop.
Enhance my leetcode experience
// ==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