// ==UserScript== // @name 优化geeksforgeeks视图 // @namespace http://tampermonkey.net/ // @version 0.1 // @description try to take over the world! // @author You // @match https://www.geeksforgeeks.org/* // @grant none // @downloadURL https://update.greasyfork.icu/scripts/415435/%E4%BC%98%E5%8C%96geeksforgeeks%E8%A7%86%E5%9B%BE.user.js // @updateURL https://update.greasyfork.icu/scripts/415435/%E4%BC%98%E5%8C%96geeksforgeeks%E8%A7%86%E5%9B%BE.meta.js // ==/UserScript== (function() { 'use strict'; // Your code here... document.getElementById('secondary').style.display="none"; })();