Greasy Fork

优化geeksforgeeks视图

try to take over the world!

目前为 2020-11-04 提交的版本。查看 最新版本

// ==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";
})();