// ==UserScript== // @name 低端影视去广告 // @namespace https://taozhiyu.tk/ // @version 0.2.1 // @description 屏蔽广告,兼容adblock等广告过滤器开启后的10秒倒计时 // @author 涛之雨 // @match *://ddrk.me/* // @match *://ddys.mov/* // @match *://ddys.art/* // @match *://ddrk.me/* // @match *://ddys.pro/* // @match *://ddys.site/* // @match *://ddys.tv/* // @match *://ddrk2.me/* // @grant GM_addStyle // ==/UserScript== (function () { 'use strict'; console.log('失效了?访问脚本发布站https://scriptcat.org/zh-CN/script-show-page/1384查看更多或反馈') GM_addStyle(`.cfa_popup,.entry > div:nth-child(1){ display:none!important; }`); Object.defineProperty(HTMLDivElement.prototype, 'clientHeight', { get() { return 130 } }) })();