Advertisement
SebaOrrego

Classic youtube layout script

May 13th, 2019
357
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. (function(){
  2.     'use strict';
  3. // ==/UserScript==
  4. var url = window.location.href;
  5. if (url.indexOf("disable_polymer") === -1) {
  6.   if (url.indexOf("?") > 0) {
  7.  url += "&";
  8.   } else {
  9.  url += "?";
  10.   }
  11.   url += "disable_polymer=1";
  12.   window.location.href = url;
  13.  document.cookie = document.cookie.split(' ').filter(o=>o.indexOf('PREF=')!==-1)[0].replace(';','')+'&f5=30030&f6=8;domain=.youtube.com;path=/';
  14. }
  15. })();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement