SubyShare timeout bypass

Shows Download button immediately

  1. // ==UserScript==
  2. // @name SubyShare timeout bypass
  3. // @namespace timeout.bypass
  4. // @version 0.0.0.1
  5. // @description Shows Download button immediately
  6. // @author AHOHNMYC
  7. // @match https://subyshare.com/*
  8. // @grant none
  9. // ==/UserScript==
  10.  
  11. const codeInput = document.querySelector('[name="code"]');
  12. if (!codeInput) {
  13. document.querySelector('[name="method_free"]').click();
  14. } else {
  15. document.getElementById('countdown').style.display = 'none';
  16. document.querySelector('.downloadbtn').removeAttribute('disabled');
  17. document.querySelector('.downloadbtn').style = 'display: block; margin-bottom: 20px;';
  18. codeInput.focus();
  19. }

QingJ © 2025

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