Youtube: New Player + Cinema Mode

Automatically turns on the new player and cinema mode

Od 16.05.2015.. Pogledajte najnovija verzija.

// ==UserScript==
// @name        Youtube: New Player + Cinema Mode
// @version     1
// @author      Challenger
// @description Automatically turns on the new player and cinema mode
// @match       http://www.youtube.com/watch*
// @match       https://www.youtube.com/watch*
// @namespace https://greasyfork.org/users/11442
// ==/UserScript==
if (document.cookie.indexOf("VISITOR_INFO1_LIVE=Q06SngRDTGA") === -1 || document.cookie.indexOf("wide=1") === -1) {
    document.cookie="VISITOR_INFO1_LIVE=Q06SngRDTGA"
    document.cookie="wide=1"
    location.reload();
}