福建技术师范学院安全实验室脚本

自动跳过

// ==UserScript==
// @name         福建技术师范学院安全实验室脚本
// @description  自动跳过
// @namespace    http://tampermonkey.net/
// @version      1.0
// @author       权辉
// @match        http://syaqks.fpnu.edu.cn/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';
  console.log('running....') //打印日志
  function a(){
    console.log('confirm')   //输出控制台
    return true;    
  }

  window.confirm = a;   // 关闭弹窗


})();