// ==UserScript== // @name 解除getrelax.club防去广告屏蔽 // @namespace http://cyd.space/ // @version 0.4 // @description 解除getrelax.club防去广告屏蔽。 // @author CYD // @match https://getrelax.club/* // @run-at document-body // @grant none // @downloadURL https://update.greasyfork.icu/scripts/374471/%E8%A7%A3%E9%99%A4getrelaxclub%E9%98%B2%E5%8E%BB%E5%B9%BF%E5%91%8A%E5%B1%8F%E8%94%BD.user.js // @updateURL https://update.greasyfork.icu/scripts/374471/%E8%A7%A3%E9%99%A4getrelaxclub%E9%98%B2%E5%8E%BB%E5%B9%BF%E5%91%8A%E5%B1%8F%E8%94%BD.meta.js // ==/UserScript== (function() { //删除已有节点 var adDiv = window.document.getElementsByClassName("playno1_ad_test"); if(adDiv.length !== 0){ adDiv[0].parentNode.removeChild(adDiv[0]); } //嫁接新的div到body防止对于布局的干扰 var nDiv = window.document.createElement("div"); nDiv.className = "playno1_ad_test"; nDiv.style = "height:101px;visibility:hidden;"; window.document.body.insertBefore(nDiv,window.document.body.firstChild); })();