天津理工大学就业信息网去除浮动

去除浮动

// ==UserScript==
// @name         天津理工大学就业信息网去除浮动
// @namespace    http://tjut.bysjy.com.cn/index
// @version      0.1
// @description  去除浮动
// @author       ZZY
// @match        http://*/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    window.onload = function () {
        document.getElementById('float_window_0').style.display = 'none';
    }
})();