中国大学MOOC去水印

去除中国大学MOOC网站的水印

// ==UserScript==
// @name         中国大学MOOC去水印
// @namespace    BlingCc
// @version      1.0
// @description  去除中国大学MOOC网站的水印
// @author       Cc
// @match        https://www.icourse163.org/*
// @license      MIT
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    function removeWaterContent() {
        var waterContent = document.getElementById("waterContent");
        if (waterContent) {
            waterContent.remove();
        }
    }

    // 每隔10秒钟执行一次删除操作
    setInterval(removeWaterContent, 10000);
})();