AppDoze Download Wait Bypass

Injects CSS to bypass wait time for downloads on appdoze.com

目前为 2024-11-25 提交的版本,查看 最新版本

  1. // ==UserScript==
  2. // @name AppDoze Download Wait Bypass
  3. // @namespace https://leaked.tools
  4. // @version 1.0
  5. // @description Injects CSS to bypass wait time for downloads on appdoze.com
  6. // @author Sango
  7. // @match *://*.appdoze.com/*
  8. // @grant none
  9. // @license MIT
  10. // ==/UserScript==
  11.  
  12. (function () {
  13. 'use strict';
  14. const style = document.createElement('style');
  15. style.type = 'text/css';
  16. style.textContent = `
  17. .show_download_links {
  18. display: block !important;
  19. }
  20. .bx-download .spinvt {
  21. display: none !important;
  22. }
  23. `;
  24. document.head.appendChild(style);
  25. })();