// ==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 none // ==/UserScript== (function() { 'use strict'; // Your code here... document.getElementById('secondary').style.display="none"; })();