Created
April 15, 2010 08:05
-
-
Save gamlerhart/366825 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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