Greasy Fork

Greasy Fork is available in English.

UiBot Commander修改CSS样式

修改指定CSS文件中的样式

当前为 2023-04-18 提交的版本,查看 最新版本

// ==UserScript==
// @name         UiBot Commander修改CSS样式
// @namespace    https://www.uibot.com.cn
// @version      1.0
// @description  修改指定CSS文件中的样式
// @include      https://commander.uibot.com.cn/*
// @grant        GM_addStyle
// @license      MIT
// ==/UserScript==

(function() {
    'use strict';

    GM_addStyle('.hide-text[data-v-53b4560a]{max-width: 1300px !important;}');
})();