Greasy Fork is available in English.
自动关闭爱奇艺广告
// ==UserScript==
// @name 爱奇艺广告自动关闭脚本
// @namespace http://tampermonkey
// @version 1.0
// @description 自动关闭爱奇艺广告
// @match https://www.iqiyi.com/*
// @grant none
// @license MIT
// ==/UserScript==
(function() {
'use strict';
setInterval(function() {
var closeBtn = document.querySelector('.cupid-pause-max-close-btn');
if (closeBtn) {
closeBtn.click();
}
}, 100);
})();