adfoc.us skip

3/12/2025, 8:24:29 AM

当前为 2025-03-12 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name adfoc.us skip
  3. // @namespace Violentmonkey Scripts
  4. // @match http://adfoc.us/*
  5. // @grant none
  6. // @version 1.0
  7. // @author Baba-Yagan
  8. // @license CC BY-NC-SA 4.0
  9. // @license https://creativecommons.org/licenses/by-nc-sa/4.0/
  10. // @description 3/12/2025, 8:24:29 AM
  11. // ==/UserScript==
  12.  
  13. (function() {
  14. 'use strict';
  15.  
  16. // Make #showSkip visible
  17. let skipDiv = document.querySelector("#showSkip");
  18. if (skipDiv) {
  19. skipDiv.removeAttribute("style");
  20. }
  21.  
  22. // Wait for the page to fully load
  23. window.onload = function() {
  24. let skipLink = document.querySelector("#showSkip a");
  25. if (skipLink && skipLink.href) {
  26. window.location.href = skipLink.href; // Redirect to the URL
  27. }
  28. };
  29. })();

QingJ © 2025

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