阿米加净化

眼不见为净

目前為 2023-08-25 提交的版本,檢視 最新版本

// ==UserScript==
// @name         阿米加净化
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  眼不见为净
// @author       You
// @match        *://ame.geostar.com.cn:8096/*
// @icon         https://ame.geostar.com.cn:8096/default/ame/clipview/assets/images/title_logo.png
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
    $("#windowContent .col-sm-6:eq(0)").remove();
    $("#windowContent .col-sm-6:eq(1)").insertBefore($("#windowContent .col-sm-6:eq(3)"));
})();