Greasy Fork is available in English.
去掉爱奇艺广告
当前为
// ==UserScript==
// @name IqiyiRemiveAd
// @namespace https://www.iqiyi.com/
// @version 0.0.3
// @description 去掉爱奇艺广告
// @author Neal
// @match https://www.iqiyi.com/v_*
// @grant none
// ==/UserScript==
(function() {
'use strict';
var removeAd = document.createElement('span');
removeAd.innerHTML = "<a href='https://jx.lykzl.com/?url="+window.location.href+"' target='_blank'>解开HD</a>";
setTimeout(function(){
document.getElementByName("h1").appendChild(removeAd);
},3000)
})();