四川大学课程中心兼容助手

虽然只有一行代码,但是希望帮助没有IE的用户使用四川大学课程中心,关于无法提交作业的问题可以参考我博客上的解决方案。

// ==UserScript==
// @name         四川大学课程中心兼容助手
// @namespace    SCUCourseCenterHelper
// @version      0.1
// @description  虽然只有一行代码,但是希望帮助没有IE的用户使用四川大学课程中心,关于无法提交作业的问题可以参考我博客上的解决方案。
// @author       IzaiahSun
// @include      http://cc.scu.edu.cn/G2S/Showsystem/Index.aspx
// @grant        unsafeWindow
// @license      Apache-2.0
// ==/UserScript==

(function() {
    'use strict';
    document.getElementsByClassName('menubg')[0].removeAttribute('style');
    // Your code here...
})();