// ==UserScript== // @name 妮可,嗨哆咪,美剧社广告过滤 // @namespace https://www.yqsphp.com // @version 1.0.21 // @description 针对在手机端访问网页时,妮可、嗨哆咪视频简单的广告过滤 // @author YQS // @match *://www.nicotv.me/* // @match *://www.haiduomi.cc/* // @match *://m.meijushe.cc/* // @match *://www.tv432.com/* // @match *://m.yhdm.tv/* // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; var createElement = document.createElement; document.createElement = function (tag) { switch (tag) { case 'div': case 'p': case 'a': case 'stype': case 'script': console.log('禁用动态添加脚本,防止广告加载'); break; default: return createElement.apply(this, arguments); } } $("body").css({"margin-top":0,"padding-top":0}); $(".navbar").css("margin-top",0); })();