眼不见为净
// ==UserScript==
// @name 阿米加净化
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 眼不见为净
// @author Nihaorz
// @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)"));
})();