Greasy Fork is available in English.

Youtube返回旧版布局(已失效)

将youtube返回旧版布局 (已失效)

Installer ce script?
Script suggéré par l'auteur

Vous pourriez également aimer YouTube +.

Installer ce script
// ==UserScript==
// @name Youtube返回旧版布局(已失效)
// @name:zh-CN Youtube返回旧版布局(已失效)
// @name:zh-TW Youtube返回舊版佈局(已失效)
// @name:en Restore Old Youtube(void)
// @name:ko 올드 유튜브 복원(실패)
// @name:ja Youtube古いレイアウトに戻る(失敗)
// @name:es Restaurar el viejo Youtube (inválido)
// @description 将youtube返回旧版布局 (已失效)
// @description:zh-CN 将youtube返回旧版布局
// @description:zh-TW 將youtube返回舊版佈局
// @description:ja YouTubeを古いレイアウトに戻す
// @description:en Return Youtube to the old layout.
// @description:ko Youtube를 이전 레이아웃으로 되돌립니다.
// @description:es Regresa Youtube a la distribución anterior.
// @version 0.1.3
// @icon https://s.ytimg.com/yts/img/favicon-vfl8qSV2F.ico
// @match *://www.youtube.com/*
// @exclude *://www.youtube.com/embed/*
// @grant none
// @run-at document-start
// @from ndogw
// @namespace Old youtube
// ==/UserScript==


var url = window.location.href;
if (url.indexOf("disable_polymer") === -1) {
  if (url.indexOf("?") > 0) {
    url += "&";
  } else {
    url += "?";
  }
  url += "disable_polymer=1";
  window.location.href = url;
}