// ==UserScript== // @name 廖雪峰 浏览优化 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 目前做了固定目录树,单独滚动,可以避免文章太长浏览结束切换目录需要回到顶部 // @author lzcer // @match https://www.liaoxuefeng.com/wiki/1016959663602400/1017092876846880 // @icon https://www.liaoxuefeng.com/favicon.ico // @grant none // @license lzcer // @downloadURL none // ==/UserScript== (function() { 'use strict'; $('.x-sidebar-left').css('position', 'fixed').css('overflow-y', 'scroll').css('height', '100%'); $('.uk-flex-item-1').css('margin-left', '316px'); // Your code here... })();