Greasy Fork is available in English.
目前做了固定目录树,单独滚动,可以避免文章太长浏览结束切换目录需要回到顶部
// ==UserScript==
// @name 廖雪峰 浏览优化
// @namespace http://tampermonkey.net/
// @version 0.2
// @description 目前做了固定目录树,单独滚动,可以避免文章太长浏览结束切换目录需要回到顶部
// @author lzcer
// @match https://www.liaoxuefeng.com/*
// @icon https://www.liaoxuefeng.com/favicon.ico
// @grant none
// @license lzcer
// ==/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...
})();