Greasy Fork

来自缓存

扩大屏幕阅读范围-廖雪峰

删掉侧边栏

目前为 2022-12-03 提交的版本。查看 最新版本

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

(function() {
    'use strict';
    document.getElementsByClassName('uk-flex-item-none x-sidebar-left')[0].remove();
})();