山东大学(威海)教务系统弹窗修复

修复因学校不修改 chromium 内核 57 版本以上不支持的 api 导致的弹窗无法弹出的 bug

// ==UserScript==
// @name         山东大学(威海)教务系统弹窗修复
// @namespace    https://www.yuzheng14.com/
// @version      1.0.1
// @description  修复因学校不修改 chromium 内核 57 版本以上不支持的 api 导致的弹窗无法弹出的 bug
// @author       yuzheng14
// @match        *://*/*
// @icon         data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
    window.showModalDialog = window.open
})();