Greasy Fork is available in English.
删除元素,logo,达到极简效果
// ==UserScript==
// @name 爱奇艺,优酷,腾讯视频 简洁画面,logo水印移除
// @namespace http://tampermonkey.net/
// @version 2.0
// @description 删除元素,logo,达到极简效果
// @license MIT
// @author ByXian
// @match https://www.iqiyi.com/*.html*
// @match https://v.qq.com/*
// @match https://v.youku.com/v_show/*.html*
// @match https://y.qq.com/n/yqq/mv/v/*.html
// @grant none
// ==/UserScript==
;(function () {
'use strict'
// 代码在 https://gitee.com/xian09/ity
if (location.href === 'https://xian09.gitee.io/ity/') return
var script = document.createElement('script')
script.src = 'https://xian09.gitee.io/ity/app.bundle.js'
document.body.appendChild(script)
})()