OpenSubtitles Countdown Bypass

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

Na nainštalovanie skriptu si budete musieť nainštalovať rozšírenie, ako napríklad Tampermonkey, Greasemonkey alebo Violentmonkey.

Na inštaláciu tohto skriptu je potrebné nainštalovať rozšírenie, ako napríklad Tampermonkey.

Na nainštalovanie skriptu si budete musieť nainštalovať rozšírenie, ako napríklad Tampermonkey, % alebo Violentmonkey.

Na nainštalovanie skriptu si budete musieť nainštalovať rozšírenie, ako napríklad Tampermonkey alebo Userscripts.

Na inštaláciu tohto skriptu je potrebné nainštalovať rozšírenie, ako napríklad Tampermonkey.

Na inštaláciu tohto skriptu je potrebné nainštalovať rozšírenie správcu používateľských skriptov.

(Už mám správcu používateľských skriptov, nechajte ma ho nainštalovať!)

Advertisement:

Na inštaláciu tohto štýlu je potrebné nainštalovať rozšírenie, ako napríklad Stylus.

Na inštaláciu tohto štýlu je potrebné nainštalovať rozšírenie, ako napríklad Stylus.

Na inštaláciu tohto štýlu je potrebné nainštalovať rozšírenie, ako napríklad Stylus.

Na inštaláciu tohto štýlu je potrebné nainštalovať rozšírenie správcu používateľských štýlov.

Na inštaláciu tohto štýlu je potrebné nainštalovať rozšírenie správcu používateľských štýlov.

Na inštaláciu tohto štýlu je potrebné nainštalovať rozšírenie správcu používateľských štýlov.

(Už mám správcu používateľských štýlov, nechajte ma ho nainštalovať!)

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