返回首頁 

Greasy Fork is available in English.

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

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


Installer ce script?
// ==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.headvar 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...})();