Skip to content

Instantly share code, notes, and snippets.

Created March 13, 2018 14:41
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/faa0f5847bb24a091ddf8f9d53725d0c to your computer and use it in GitHub Desktop.
Save anonymous/faa0f5847bb24a091ddf8f9d53725d0c to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name OldYTinterface
// @namespace https://www.youtube.com/
// @description Change YT intrface
// @version 1
// @include *://youtube.com/watch*
// @include *://www.youtube.com/watch*
// @exclude *://youtube.com/watch*&disable_polymer=1
// @exclude *://www.youtube.com/watch*&disable_polymer=1
// @run-at document-start
// @grant none
// @noframes
// ==/UserScript==
var url = window.location.href;
window.location.href = url + '&disable_polymer=1';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment