Greasy Fork

Greasy Fork is available in English.

Youtube: New Player + Cinema Mode

Automatically turns on the new player and cinema mode

当前为 2015-07-12 提交的版本,查看 最新版本

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