// ==UserScript== // @name IqiyiRemiveAd // @namespace https://www.iqiyi.com/ // @version 0.0.1 // @description 去掉爱奇艺广告 // @author Neal // @match https://www.iqiyi.com/v_* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var removeAd = document.createElement('span'); removeAd.innerHTML = "解开HD"; $('h1.player-title').append(removeAd); })();