// ==UserScript==
// @name 关闭武汉理工大学选课弹出层
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 关闭武汉理工大学选课页面30秒弹出层
// @author You
// @match http://218.197.102.183/
// @include http://202.114.90.180/Course/*
// @include http://202.114.90.184/Course/*
// @include http://59.69.102.13/Course/*
// @include http://202.114.50.131/Course/*
// @include http://202.114.50.130/Course/*
// @include http://218.197.102.183/Course/*
// @grant none
// @downloadURL none
// ==/UserScript==
(function() {
'use strict';
// Your code here...
//关闭弹出层
$('head').append('');
let $close = $('');
$("#MyDiv>div").first().append($close);
$("#MyDiv>div>i").first().on("click",function() {
$("#MyDiv").hide();
$("#fade").hide();
});
})();