🏠 Home 

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

自动跳过


安装此脚本?
  1. // ==UserScript==
  2. // @name 福建技术师范学院安全实验室脚本
  3. // @description 自动跳过
  4. // @namespace http://tampermonkey.net/
  5. // @version 1.0
  6. // @author 权辉
  7. // @match http://syaqks.fpnu.edu.cn/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11. (function() {
  12. 'use strict';
  13. console.log('running....') //打印日志
  14. function a(){
  15. console.log('confirm') //输出控制台
  16. return true;
  17. }
  18. window.confirm = a; // 关闭弹窗
  19. })();