B站合集列表增加长度

右侧合集列表长度等同左侧播放器高度

// ==UserScript==
// @name         B站合集列表增加长度
// @namespace    https://greasyfork.org/zh-CN/users/6065-hatn
// @version      0.1.1
// @description   右侧合集列表长度等同左侧播放器高度
// @author       hatn
// @match        https://*.bilibili.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=bilibili.com
// @grant        none
// @run-at       document-end
// ==/UserScript==

const style_dom = document.createElement('style');
style_dom.innerHTML = `.video-sections-content-list, .cur-list { max-height: 676px !important; height: 476px !important }`;
document.body.insertBefore(style_dom, document.body.firstChild);