Automatically turns on the new player and cinema mode
目前為
// ==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();
}