// ==UserScript==
// @name 爱奇艺,优酷,腾讯视频 简洁画面,logo水印移除
// @namespace http://tampermonkey.net/
// @version 1.511
// @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)){
const style=''
const jqueryJs = ''
document.getElementsByTagName('head')[0].innerHTML+=style+jqueryJs
setInterval(()=>{
if(/logoShowAnimation/.test(document.getElementsByClassName('iqp-logo-top')[0].className)){
document.getElementsByClassName('iqp-logo-top')[0].className='iqp-logo-top logoHideAnimation'
}
if(/logoShowAnimation/.test(document.getElementsByClassName('iqp-logo-bottom')[0].className)){
document.getElementsByClassName('iqp-logo-bottom')[0].className='iqp-logo-bottom logoHideAnimation'
}
document.getElementsByClassName('cupid-pause-close')[0].parentNode.style.display='none'
},500)
}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
}
})();