Skip to content

Instantly share code, notes, and snippets.

@gamlerhart
Created April 15, 2010 08:05
Show Gist options
  • Save gamlerhart/366825 to your computer and use it in GitHub Desktop.
Save gamlerhart/366825 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name YoutubeProtectionRemover
// @include http://www.youtube.com/*
// @description Removes lame protection on YouTube
// @copyright 2010, Snap
// ==/UserScript==
window.opera.addEventListener(
'BeforeScript',
function (ev){
ev.element.text = ev.element.text.replace("yt.flash.update(swfConfig, forceUpdate);","");
},
false);
//end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment