🏠 Home 

隐藏智慧校园防诈骗弹窗

直接隐藏重庆电子工程职业学院智慧校园的防诈骗弹窗


安装此脚本?
  1. // ==UserScript==
  2. // @name 隐藏智慧校园防诈骗弹窗
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description 直接隐藏重庆电子工程职业学院智慧校园的防诈骗弹窗
  6. // @author fightingHawk
  7. // @match https://sso.cqcet.edu.cn/login
  8. // @icon https://www.google.com/s2/favicons?sz=64&domain=zhihu.com
  9. // @grant none
  10. // @license MIT
  11. // ==/UserScript==
  12. (function() {
  13. 'use strict';
  14. // 每隔1ms执行一次关闭弹窗,懒得考虑其他问题,能关闭就行了
  15. setInterval(function() {
  16. layer.close(layer.index)
  17. },1)
  18. })();