OpenSubtitles Countdown Bypass

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

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey, Greasemonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals {tampermonkey_link:Tampermonkey}.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Violentmonkey.

Voor het installeren van scripts heb je een extensie nodig, zoals Tampermonkey of Userscripts.

Voor het installeren van scripts heb je een extensie nodig, zoals {tampermonkey_link:Tampermonkey}.

Voor het installeren van scripts heb je een gebruikersscriptbeheerder nodig.

(Ik heb al een user script manager, laat me het downloaden!)

Advertisement:

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een extensie nodig, zoals {stylus_link:Stylus}.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

Voor het installeren van gebruikersstijlen heb je een gebruikersstijlbeheerder nodig.

(Ik heb al een beheerder - laat me doorgaan met de installatie!)

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