Greasy Fork is available in English.

leetcode hide premium problems

2016-04-25 기준 버전입니다. 최신 버전을 확인하세요.

  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. })();