奈飞星去广告

去掉棋牌广告和播放器顶端二维码,弹窗半透明化,白色主题下显示LOGO全部内容

  1. // ==UserScript==
  2. // @name 奈飞星去广告
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.2.3
  5. // @description 去掉棋牌广告和播放器顶端二维码,弹窗半透明化,白色主题下显示LOGO全部内容
  6. // @author AN drew
  7. // @match *://*.nfstar.net/*
  8. // @match *://*.nfstar.co/*
  9. // @match *://*.nfstar.vip/*
  10. // @match *://*.nfstar.video/*
  11. // @match *://*.nfxhd.com/*
  12. // @run-at document-start
  13. // @grant GM_addStyle
  14. // ==/UserScript==
  15.  
  16. (function() {
  17. 'use strict';
  18.  
  19. //去掉棋牌广告和播放器顶端二维码
  20. setInterval(function(){
  21. $('img.img-responsive:not([class*=xs])').closest('div').hide();
  22. $('.bottom_fixed').hide();
  23. },100);
  24.  
  25.  
  26. //弹窗半透明化
  27. GM_addStyle('.layui-layer.layui-layer-page{background:rgba(255,255,255,0.5)}'+
  28. '.layui-layer.layui-layer-page.layui-layer-rim{background:rgba(255,255,255,0.5)}'+
  29. '.myui-msg__form.ajax_login.layui-layer-wrap{background:rgba(255,255,255,0.5)}'+
  30. '.layui-layer-ico.layui-layer-close.layui-layer-close2{filter:opacity(0.9)}'+
  31. 'strong{color:black}'+
  32. '.myui-msg__form.ajax_login p, .myui-msg__form.ajax_login a{color:black}'+
  33. 'input.form-control, input.btn{color:black}'+
  34. '.btn.btn-block.btn-warm{color:#ffffffe6}'+
  35. '.btn.btn-block.btn-info{color:#ffffffe6}');
  36.  
  37.  
  38. /*
  39. //白色主题下显示LOGO全部内容
  40. setInterval(function(){
  41. if($("link[name='default']").attr('href').indexOf('mytheme-color3.css') > -1 || $("link[name='default']").attr('href').indexOf('mytheme-color.css') > -1)
  42. {
  43. $('.logo .img-responsive.hidden-xs').css({'filter': 'invert(0.2)'});
  44. }
  45. else
  46. {
  47. $('.logo .img-responsive.hidden-xs').css({'filter': 'none'});
  48. }
  49. },500);
  50. */
  51. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址