Greasy Fork is available in English.

优化geeksforgeeks视图

try to take over the world!

// ==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
// ==/UserScript==

(function() {
    'use strict';
    // Your code here...
    document.getElementById('secondary').style.display="none";
})();