OpenSubtitles Countdown Bypass

Instantly skips the 10-second download countdown on opensubtitles.com

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

You will need to install an extension such as Tampermonkey to install this script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Advertisement:

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

Advertisement:

// ==UserScript==
// @name         OpenSubtitles Countdown Bypass
// @namespace    http://tampermonkey.net/
// @version      1.0
// @description  Instantly skips the 10-second download countdown on opensubtitles.com
// @author       You
// @match        https://www.opensubtitles.com/*
// @grant        none
// @run-at       document-end
// ==/UserScript==

(function() {
    'use strict';

    // Function to skip countdown and reveal download link
    function skipCountdown() {
        // Find the countdown clock element (id starts with "clock_")
        const clockDiv = document.querySelector('div[id^="clock_"]');
        if (!clockDiv) return;

        // Extract the numeric ID from the clock div
        const idMatch = clockDiv.id.match(/clock_(\d+)/);
        if (!idMatch) return;
        const dlId = idMatch[1];

        // Hide the clock/waiting div
        clockDiv.style.display = 'none';

        // Show the ready-to-download div
        const readyDiv = document.querySelector(`.download-ready_${dlId}`);
        if (readyDiv) {
            readyDiv.style.display = 'block';

            // Optionally auto-click the download link
            const downloadLink = readyDiv.querySelector('a[download]');
            if (downloadLink) {
                // Uncomment the line below to auto-start download:
                // downloadLink.click();
            }
        }
    }

    // Watch for download modals/popups appearing in the DOM
    const observer = new MutationObserver((mutations) => {
        for (const mutation of mutations) {
            if (mutation.addedNodes.length) {
                // Check if a download popup was added
                const popup = document.querySelector('.white-popup-block');
                if (popup && document.querySelector('div[id^="clock_"]')) {
                    skipCountdown();
                }
            }
        }
    });

    // Start observing the document body for changes
    observer.observe(document.body, {
        childList: true,
        subtree: true
    });

    // Also check on initial page load (for pages where download is already visible)
    skipCountdown();

    // If countdown is handled via a JavaScript timer, try to intercept setInterval
    const originalSetInterval = window.setInterval;
    window.setInterval = function(callback, delay, ...args) {
        // If delay is around 1000ms (1 second) and we're on a download page
        if (delay === 1000 && document.querySelector('div[id^="clock_"]')) {
            // Speed up the timer animation but still let it fire
            const modifiedCallback = function() {
                skipCountdown();
                if (typeof callback === 'function') callback();
            };
            return originalSetInterval.call(window, modifiedCallback, 100, ...args);
        }
        return originalSetInterval.call(window, callback, delay, ...args);
    };
})();