Greasy Fork is available in English.
主要是这个警告太晃眼了
// ==UserScript==
// @name 马军课程 软考高级 小鹅通课程去警告
// @namespace http://tampermonkey.net/
// @version 0.1
// @description 主要是这个警告太晃眼了
// @author bestcondition
// @match *://*.xiaoe-tech.com/*
// @icon https://www.google.com/s2/favicons?domain=xiaoe-tech.com
// @grant none
// ==/UserScript==
(function() {
'use strict';
function hid(){
document.getElementById('copyRight').setAttribute('hidden',true);
document.getElementById('lampWrapper').innerHTML='';
}
setInterval(hid,1000);
// Your code here...
})();