Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name New Userscript
- // @namespace http://tampermonkey.net/
- // @version 0.1
- // @description try to take over the world!
- // @author You
- // @match https://www.youtube.com/
- // @grant none
- // ==/UserScript==
- (function() {
- 'use strict';
- // ==UserScript==
- // @name YouTube Polymer Disable
- // @match *://www.youtube.com/*
- // @exclude *://www.youtube.com/embed/*
- // @grant none
- // @run-at document-start
- // ==/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;
- document.cookie = document.cookie.split(' ').filter(o=>o.indexOf('PREF=')!==-1)[0].replace(';','')+'&f5=30030&f6=8;domain=.youtube.com;path=/';
- }
- })();
Advertisement
Add Comment
Please, Sign In to add comment