哔哩哔哩播放合集高度调整

调整哔哩哔哩播放合集高度,和播放器高度相同

// ==UserScript==
// @name         哔哩哔哩播放合集高度调整
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  调整哔哩哔哩播放合集高度,和播放器高度相同
// @author       yingming006
// @match        *www.bilibili.com/video/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=bilibili.com
// @grant        GM_addStyle
// @license      GPL-3.0 License
// ==/UserScript==
(function() {
    let css = `.video-sections-content-list{height: 580px !important;max-height:fit-content !important;}`
    GM_addStyle(css)
})();