NOTICE: By continued use of this site you understand and agree to the binding Terms of Service and Privacy Policy.
// ==UserScript== // @name Leetcode: hide locked problems // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author zhengyc updated by flaredragon // @match https://leetcode.com/* // @grant none // @license MIT // ==/UserScript== $(document).ready(function() { //延迟3s再执行,等待所有数据加载完毕 setTimeout(hide, 3000); function hide() { var lockItems = $(".fa-lock").parents('tr td div').not('.frequency-locked'); lockItems.parents('tr').hide(); var header = $(".reactable-column-header"); header.show(); } });