A quick tweak of Sakai
目前為
// ==UserScript==
// @name Timout Dialog Disabler for Sakai
// @version 0.3
// @description A quick tweak of Sakai
// @author Luke Lazurite
// @match http://sakai.umji.sjtu.edu.cn/*
// @grant none
// @namespace https://greasyfork.org/users/18585
// ==/UserScript==
(function () {
if(portal !== undefined && portal !== null) {
portal.timeoutDialog = false;
}
else {
setTimeout(this, 1000);
}
})();