Fk Cnbeta

cnbeta红色广告栏自动点击关闭

  1. // ==UserScript==
  2. // @name Fk Cnbeta
  3. // @namespace http://tampermonkey.net/
  4. // @version 0.1
  5. // @description cnbeta红色广告栏自动点击关闭
  6. // @author inmyfree
  7. // @match *.cnbeta.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13. function FkCnbeta() {
  14. $("div").each(function(){
  15. if($(this).text() == "X"){
  16. //console.log($(this).text());
  17. $(this).click();
  18. }
  19. });
  20. }
  21. window.setInterval(FkCnbeta, 500);
  22. FkCnbeta();
  23. })();

QingJ © 2025

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