leetcode hide premium problems

As of 2016-04-25. See the latest version.

  1. // ==UserScript==
  2. // @name leetcode hide premium problems
  3. // @description:en Hide Premium Problems on Leetcode
  4. // @namespace https://greatest.deepsurf.us/en/users/22079-hntee
  5. // @version 0.1
  6. // @author hntee
  7. // @match https://leetcode.com/problemset/*
  8. // ==/UserScript==
  9.  
  10. (function() {
  11. 'use strict';
  12. $('.fa-lock').parent().parent().hide();
  13. })();