魔学院专用脚本,干掉烦人的弹窗
// ==UserScript==
// @name 【魔学院专用】自动点击脚本
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 魔学院专用脚本,干掉烦人的弹窗
// @author Mr_Black
// @match *://*/*
// @icon data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @grant none
// ==/UserScript==
(function() {
'use strict';
function del() {
var a = document.getElementsByClassName('popup-buttons')[0];
if (a) {
document.getElementsByClassName('popup-buttons')[0].click();
};
var c = document.getElementsByClassName('popup-buttons')[0];
if (c) {
document.getElementsByClassName('popup-buttons')[0].click();
};
}
setInterval(del, 9000);
})();
if(event.keyCode==13){
document.getElementById('buttonClientID').click();
};