// ==UserScript== // @name 奈飞星去广告 // @namespace http://tampermonkey.net/ // @version 0.1 // @description 去掉棋牌广告和播放器顶端二维码 // @author AN drew // @match https://*.nfstar.net/* // @match https://*.nfstar.co/* // @match https://*.nfstar.vip/* // @match https://*.nfstar.video/* // @run-at document-start // @grant none // @downloadURL none // ==/UserScript== (function() { 'use strict'; setInterval(function(){ $('img.img-responsive:not([class*=xs])').closest('div').hide(); $('.bottom_fixed').hide(); },100); })();