10/04/15 16:43:40 30X58YlFP
>>615
URLリンク(my.opera.com)
ユーザーJavaScriptフォルダを設定し、その中にYoutubeProtectionRemover.jsというファイルを作れば見れるようになります。
YoutubeProtectionRemover.jsの中身は↓
// ==UserScript==
// @name YoutubeProtectionRemover
// @include URLリンク(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
です。