[JavaScript] 纯文本查看 复制代码
// ==UserScript==
// @name 爱奇艺,腾讯视频,优酷在线播放去水印
// @namespace http://tampermonkey.net/
// @version 1.0
// @description 爱奇艺、腾讯、优酷
// @author XXXXXX
// @match http*://v.qq.com/*
// @match http*://v.youku.com/*
// @match http*://www.iqiyi.com/*
// @grant none
// ==/UserScript==
setInterval(function (){
// 爱奇艺
document.querySelectorAll(".iqp-logo-top").forEach(function(item,index,arr){item.style.display='none';});
// 腾讯视频
document.querySelectorAll(".txp_waterMark_pic").forEach(function(item,index,arr){item.style.display='none';});
// 优酷
document.querySelectorAll(".logo-new").forEach(function(item,index,arr){item.style.display='none';});
}, 100);