Greasy Fork

Greasy Fork is available in English.

YouTube: Cinema Mode

Automatically turns on cinema mode

当前为 2017-01-04 提交的版本,查看 最新版本

// ==UserScript==
// @name        YouTube: Cinema Mode
// @description Automatically turns on cinema mode
// @author      Challenger
// @namespace   http://greasyfork.icu/users/11442
// @version     4
// @match       http://www.youtube.com/*
// @match       https://www.youtube.com/*
// ==/UserScript==
if (document.cookie.indexOf("wide=1") === -1) {
    if (document.cookie.indexOf("wide=1") === -1) {
        document.cookie="wide=1;domain=.youtube.com"
    }
    location.reload();
}