腾讯课堂去水印,支持历史回放

上课直播去水印,看历史回放也要去水印

// ==UserScript==
// @name        腾讯课堂去水印,支持历史回放
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  上课直播去水印,看历史回放也要去水印
// @author       kaka
// @match        https://ke.qq.com/webcourse/*
// @grant        none
// ==/UserScript==

(function() {
    'use strict';
  var head = document.head
    var style = document.createElement("style")
    style.type = "text/css"
    var css = [
        "a[class*='marquee animation'],txpdiv[class*='player-inject'] {",
        "    display: none!important;",
        "}",
        "#x-tcp-container > txpdiv {",
        "    display: none!important;",
        "}",
         ].join("\n")
    var text = document.createTextNode(css)
    style.appendChild(text)
    head.appendChild(style)
    // Your code here...
})();