OpenSubtitles Countdown Bypass

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

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

Advertisement:

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

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);
    };
})();