你的墳頭草好高

// ==UserScript==
// @name         PingJiaoEater
// @description  弹个蛋
// @match        *://chalk-c3.seiue.com/*
// @run-at       document-start
// ==/UserScript==

new MutationObserver(() => {
  document.querySelectorAll('.ant-modal-root').forEach(e => {
    if (/请先完成评教|才可正常使用系统|课程评价反馈调研/.test(e.textContent)) e.remove();
  });
}).observe(document.body, {childList: true});

和这个二选一

3 Likes