Youtube Resumer

Updates the url so that it contains "?t={time}" corresponding to video.currentTime.

Verze ze dne 06. 10. 2021. Zobrazit nejnovější verzi.

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!)

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!)

// ==UserScript==
// @name        Youtube Resumer
// @description Updates the url so that it contains "?t={time}" corresponding to video.currentTime.
// @version     1
// @match       https://www.youtube.com/watch?*
// @grant       none
// @namespace https://greasyfork.org/users/206408
// ==/UserScript==

(async () => {

    function l(message){
        console.log(`[Youtube Resumer] ${message}`)
    }

    l('starting')

    const video = document.querySelector('video');
    video.addEventListener('timeupdate', (event) => {
        l(`duration changed: ${video.currentTime}`)
        const time = parseInt(video.currentTime)
        const url = new URL(window.location.href)
        url.searchParams.set('t', time)
        window.history.replaceState(null, null, url);
    })
})();