Skip to content

Instantly share code, notes, and snippets.

@miya2000
Created May 2, 2012 06:21
Show Gist options
  • Save miya2000/2574405 to your computer and use it in GitHub Desktop.
Save miya2000/2574405 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name nicovideo - zero for Opera10.10
// @include http://www.nicovideo.jp/watch/*
// ==/UserScript==
(function() {
opera.addEventListener('BeforeScript', function(e) {
// show comment panel.
if (/EmbededWatchData\.js/.test(e.element.src)) {
$('#playerCommentPanel').show();
}
}, false);
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment