增加横向滚动条 | Vertical scrolling support
// ==UserScript==
// @name 飞书 wiki 侧栏优化 | Feishu wiki sidebar optimization
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 增加横向滚动条 | Vertical scrolling support
// @author You
// @match https://*.feishu.cn/wiki/*
// @icon https://www.google.com/s2/favicons?sz=64&domain=feishu.cn
// @grant GM_addStyle
// @run-at document-start
// @license MIT
// ==/UserScript==
(function() {
'use strict';
GM_addStyle(`
.wiki-page-tree .wiki-tree-wrap { overflow-x: auto; }
.wiki-page-tree .wiki-tree-wrap .list-filler { min-width: 600px !important; }
`);
})();