// ==UserScript== // @name 自动关闭慕课播放界面的作者介绍 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 自动关闭慕课视频播放界面的作者介绍 // @author xxyangyoulin // @match https://www.imooc.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=imooc.com // @grant none // @license GPL-3.0-or-later // @downloadURL none // ==/UserScript== (function() { 'use strict'; setTimeout(()=>{ let closeBtn = document.querySelector(".imv2-close.video-panel-close") if(closeBtn){ closeBtn.click() } },500); // Your code here... })();