Greasy Fork

Greasy Fork is available in English.

四川大学类网站体验增强(软件学院版)

各种四川大学下的网站前端微调

当前为 2016-05-27 提交的版本,查看 最新版本

// ==UserScript==
// @name        四川大学类网站体验增强(软件学院版)
// @namespace   scu_helper_swjx
// @description 各种四川大学下的网站前端微调
// @include     http://swjx.scu.edu.cn/moodle/login/index.php
// @include     http://cc.scu.edu.cn/G2S/Showsystem/Index.aspx
// @version     1.2.2
// @grant       none
// @author      lightning-zgc
// ==/UserScript==
switch (window.location.href) {
    case 'http://swjx.scu.edu.cn/moodle/login/index.php':
        var pass = document.getElementById('passcode');
        pass.value = 'hbuckwpzg';
        pass.setAttribute('style', 'display:none;');
        break;
    case 'http://cc.scu.edu.cn/G2S/Showsystem/Index.aspx':

        document.getElementsByClassName('menubg')[0].removeAttribute('style');
        break;
    default:

}