10/04/15 19:08:52 ylTPLHjW0
tubeの問題、公式フォーラムにあった以下の方法で解決しました。
ユーザー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
です。
ユーザーJavaScriptフォルダは、詳細設定→コンテンツ→JavaScriptオプションから、任意のフォルダを設定します。
その中にファイルを入れてください。
もちろんJavaScriptが有効になっていないと動作しません。