Remove academic evaluation

1/8/2025, 10:40:02 PM

// ==UserScript==
// @name        Remove academic evaluation
// @namespace   Violentmonkey Scripts
// @match       https://1.tongji.edu.cn/*
// @grant       none
// @version     1.0
// @author      -
// @description 1/8/2025, 10:40:02 PM
// @license     MIT
// ==/UserScript==


(function() {
    'use strict';
    setTimeout(() => {
      document.querySelector('body > div.v-modal').remove();
      document.querySelector('body > div.el-message-box__wrapper').remove();
    }, 3000);
})();