Greasy Fork

来自缓存

Greasy Fork is available in English.

Youtube: Cinema Mode

Automatically turns on cinema mode

当前为 2016-12-29 提交的版本,查看 最新版本

// ==UserScript==
// @name        Youtube: Cinema Mode
// @description Automatically turns on cinema mode
// @author      Challenger
// @namespace   http://greasyfork.icu/users/11442
// @version     3
// @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();
}