wsmud_status_size

武神传说 MUD

目前为 2019-05-01 提交的版本。查看 最新版本

// ==UserScript==
// @name            wsmud_status_size
// @namespace       edc
// @version         0.0.2
// @date            01/05/2019
// @modified        01/05/2019
// @description     武神传说 MUD
// @author          edcit.cn
// @match           http://*.wsmud.com/*
// ==/UserScript==

(function () {
    'use strict';
    var style = document.createElement("style");
    style.type = "text/css";
    try{
      style.appendChild(document.createTextNode(".item-status-bar > .status-item{font-size:0.5rem;}"));
    }catch(ex){
      style.styleSheet.cssText = ".item-status-bar > .status-item{font-size:0.5rem;}";//针对IE
    }
    var head = document.getElementsByTagName("head")[0];
    head.appendChild(style);
})();

QingJ © 2025

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