Youtube - skip to time in Url param

01/09/2024, 1:04:43 pm

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name        Youtube - skip to time in Url param
// @namespace   Violentmonkey Scripts
// @match       https://www.youtube.com/watch*
// @grant       GM_registerMenuCommand
// @version     1.0
// @author      -
// @license MIT
// @description 01/09/2024, 1:04:43 pm
// ==/UserScript==


function setVideoTime(){
  let qp = new URLSearchParams(window.location.href);
  if (qp.has("t")){
    var time = Number(qp.get("t").replace("s",""))
    document.querySelector('video').currentTime = time

  }
}



GM_registerMenuCommand('Set video time to url param', setVideoTime)