Youtube No Flexy Mode

Disable Flexy Mode

当前为 2018-05-21 提交的版本,查看 最新版本

// ==UserScript==
// @name         Youtube No Flexy Mode
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  Disable Flexy Mode
// @author       Botan
// @match        *://*.youtube.com/*
// @grant        none

// ==/UserScript==

(function() {
    'use strict';

    document.getElementsByClassName("html5-video-player")[0].style.background="#000000";
    var s = document.createElement("script");
    s.innerHTML = "yt.config_.EXPERIMENT_FLAGS.kevlar_flexy_watch_new_dom=false;console.log('Flexy disabled!');";
    document.body.appendChild(s);
})();