Created
December 2, 2012 03:39
-
-
Save miya2000/4186854 to your computer and use it in GitHub Desktop.
nicovideo - Q for Opera10.10
This file contains hidden or 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 nicovideo - Q for Opera10.10 | |
| // @include http://www.nicovideo.jp/watch/* | |
| // ==/UserScript== | |
| (function() { | |
| opera.addEventListener('BeforeScript', function(e) { | |
| if (/EmbededWatchData\.js/.test(e.element.src)) { | |
| document.body.constructor = HTMLBodyElement; | |
| } | |
| }, false); | |
| })(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment