Greasy Fork is available in English.
去掉爱奇艺广告
当前为
// ==UserScript==
// @name IqiyiRemiveAd
// @namespace https://www.iqiyi.com/
// @version 0.0.1
// @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=' class=\"text\">解开HD</a>";
$('h1.player-title').append(removeAd);
})();