Swyter Tweaks for Streamcloud

Gets rid of all the hurdles and directly plays the video in an immersive player.

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey 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 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          Swyter Tweaks for Streamcloud
// @description   Gets rid of all the hurdles and directly plays the video in an immersive player.
// @match         http://streamcloud.eu/*
// @grant         none
// @version       2013.12.07
// @author        Swyter
// @namespace https://greasyfork.org/users/4813
// ==/UserScript==

if(btn=document.getElementById("btn_download"))
{
  /* the countdown is capped server-side -- that's actually pretty good */
  btn.addEventListener("DOMSubtreeModified",function(e){
    if (e.target.classList.contains("blue"))
    {
       console.log("Go!",e); e.target.click();
    }
  });
}

else
{
  /* fantastic, heroic, huge, mad skills right here! */
  document.getElementById("turnon").click();

  /* get rid of the huge useless thing on the top and avoid scrolling */
  (header=document.getElementById("header")).parentNode.removeChild(header);
  (footer=document.getElementById("footer")).parentNode.removeChild(footer);
}