Layout Rearrange

2025/6/22 上午11:02:53

当前为 2025-06-22 提交的版本,查看 最新版本

// ==UserScript==
// @name        Layout Rearrange
// @namespace   Violentmonkey Scripts
// @match       https://game8.jp/stellar-blade/*
// @grant       none
// @version     1.0
// @author      Whiter
// @description 2025/6/22 上午11:02:53
// ==/UserScript==


var style = document.createElement('style');
style.innerHTML = `
  .l-content > .l-3col {
    display: flex;
  }

  .l-3colMain, .l-3colMain__center {
    width: 100%;
  }

  .l-3colMain {
    position: relative;
  }

  .l-3colMain__left {
    position: absolute;
    left: -220px;
  }
`
document.body.appendChild(style);

QingJ © 2025

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