Greasy Fork is available in English.
去除暂停时的广告,调整视频为全屏显示
// ==UserScript==
// @name 爱奇艺视频暂停的广告屏蔽
// @namespace http://tampermonkey.net/
// @version 1.1
// @description 去除暂停时的广告,调整视频为全屏显示
// @author pangyue
// @match *://www.iqiyi.com/*
// @grant none
// @run-at document-end
// @license MIT
// ==/UserScript==
(function() {
'use strict';
// 页面加载完成后执行
window.addEventListener('load', function() {
// 创建样式元素
const style = document.createElement('style');
style.type = 'text/css';
style.innerHTML = `
.iqp-player-videolayer {
width: 100% !important;
height: 100% !important;
top: 0 !important;
left: 0 !important;
}
`;
// 将样式元素添加到head部分
document.head.appendChild(style);
});
})();