Greasy Fork

IqiyiRemiveAd

去掉爱奇艺广告

目前为 2021-10-05 提交的版本。查看 最新版本

// ==UserScript==
// @name         IqiyiRemiveAd
// @namespace    https://www.iqiyi.com/
// @version      0.0.2
// @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+"' class=\"text\">解开HD</a>";
    setTimeout(function(){
        $('h1.player-title').append(removeAd);
    },2000)
})();