Greasy Fork

来自缓存

Greasy Fork is available in English.

奈飞星去广告

去掉棋牌广告和播放器顶端二维码

当前为 2020-12-29 提交的版本,查看 最新版本

// ==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
// ==/UserScript==

(function() {
    'use strict';

    setInterval(function(){
        $('img.img-responsive:not([class*=xs])').closest('div').hide();
        $('.bottom_fixed').hide();
    },100);

})();