您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Greasy Fork is available in English.
上课直播去水印,看历史回放也要去水印
当前为
// ==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... })();