// ==UserScript== // @name 扩大屏幕阅读范围-廖雪峰 // @version 0.1 // @description 删掉侧边栏 // @match https://www.liaoxuefeng.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=liaoxuefeng.com // @grant none // @namespace https://greasyfork.org/users/237658 // @downloadURL none // ==/UserScript== (function() { 'use strict'; document.getElementsByClassName('uk-flex-item-none x-sidebar-left')[0].remove(); })();