disableshuiying

去掉超星水印

// ==UserScript==
// @name         disableshuiying
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  去掉超星水印
// @author       You
// @match        *://mooc1.chaoxing.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    // Your code here...
    window.onload = function(){
        var shuiying=document.getElementsByClassName("mask_div")
        for (var i=0;i<shuiying.length;i++){
            shuiying[i].style.display="none"
            //shuiying[i].style.color="#FFF"
        }
}


})();