skip feishu security warning page

skip feishu security page

  1. // ==UserScript==
  2. // @license MIT
  3. // @name skip feishu security warning page
  4. // @namespace http://tampermonkey.net/
  5. // @version 0.1
  6. // @description skip feishu security page
  7. // @author simmy
  8. // @match https://security.feishu.cn/*
  9. // @icon https://www.google.com/s2/favicons?sz=64&domain=tampermonkey.net
  10. // @grant none
  11. // @run-at document-idle
  12. // ==/UserScript==
  13.  
  14. (function() {
  15. function clickLink() {
  16. var elements = document.getElementsByClassName("link JS-continue");
  17. if (elements) {
  18. console.log("found and click");
  19. elements.item(0).click();
  20. } else {
  21. console.log("element not found,wait 1s");
  22. }
  23. }
  24. var int = self.setInterval(clickLink, 1000);
  25. })();

QingJ © 2025

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