bilibili关注分组弹窗大小修改

修改分组的弹窗太tm小了!!!!!!!!!

// ==UserScript==
// @name   bilibili关注分组弹窗大小修改
// @match  https://space.bilibili.com/*
// @grant    GM_addStyle
// @run-at   document-End
// @description 修改分组的弹窗太tm小了!!!!!!!!!
// @version 0.1.1
// @require     http://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js
// @require     https://update.gf.qytechs.cn/scripts/476008/1255570/waitForKeyElements%20gist%20port.js
// @namespace https://gf.qytechs.cn/users/302232
// ==/UserScript==
/*- The @grant directive is needed to work around a design change
    introduced in GM 1.0.   It restores the sandbox.
*/
/* globals jQuery, $, waitForKeyElements */


waitForKeyElements (
    "div.vui_dialog--root",
    longerFuckingList
);

function longerFuckingList (jNode) {
    GM_addStyle ( `
    .pc-follow-btn__modify-relationship .modify-relationship-list{
    height: 800px;
    }
` );
    GM_addStyle ( `
    .pc-follow-btn__modify-relationship .modify-relationship-list .tag-item{
    height: 35px;
    }
` );
}

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址