AppDoze Download Wait Bypass

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

// ==UserScript==
// @name         AppDoze Download Wait Bypass
// @namespace    https://leaked.tools
// @version      1.0
// @description  Injects CSS to bypass wait time for downloads on appdoze.com
// @author       Sango
// @match        *://*.appdoze.com/*
// @grant        none
// @license MIT
// ==/UserScript==

(function () {
    'use strict';
    const style = document.createElement('style');
    style.type = 'text/css';
    style.textContent = `
        .show_download_links {
            display: block !important;
        }
        .bx-download .spinvt {
            display: none !important;
        }
    `;
    document.head.appendChild(style);
})();

QingJ © 2025

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