// ==UserScript==
// @name 爱奇艺,优酷,腾讯视频 简洁画面,logo水印移除
// @namespace http://tampermonkey.net/
// @version 1.510
// @description 删除元素,logo,达到极简效果
// @author Xian
// @match https://www.iqiyi.com/*.html*
// @match https://v.qq.com/*
// @match https://v.youku.com/v_show/*.html*
// https://y.qq.com/n/yqq/mv/v/*.html
// @grant none
// @downloadURL none
// ==/UserScript==
//**********************************************************************
//删除了视频下方花絮或评论部分
//删除了视频上的logo
//删除了无用广告
//移除了用户控制面板
//头部默认隐藏,鼠标移入显示头部标题栏
//**********************************************************************
(function() {
'use strict';
var $ = $ || window.$;
// 爱奇艺
if(/iqiyi.com/.test(window.location)){
setInterval(()=>{
if($('.iqp-logo-top').hasClass('logoShowAnimation')){
$('.iqp-logo-top').addClass("logoHideAnimation");
$('.iqp-logo-top').removeClass("logoShowAnimation ");
}
if($('.iqp-logo-bottom').hasClass('logoShowAnimation')){
$('.iqp-logo-bottom').addClass("logoHideAnimation");
$('.iqp-logo-bottom').removeClass("logoShowAnimation ");
}
$('.cupid-pause-close').parent().css('display', 'none')
},500)
const style=''
const jqueryJs = ''
document.getElementsByTagName('head')[0].innerHTML+=style+jqueryJs
setTimeout(()=>{
},4000)
}else if(/youku.com/.test(window.location)){ //优酷
const style = ''
document.getElementsByTagName('head')[0].innerHTML+=style
}else if(/v.qq.com/.test(window.location)){//腾讯视频
const style = ''
document.getElementsByTagName('head')[0].innerHTML+=style
}
})();