Opera 質問スレッド Part18

このエントリーをはてなブックマークに追加
620名無しさん@お腹いっぱい。
>>615
ttp://my.opera.com/japanese/forums/topic.dml?id=524591&t=1271317360
ユーザーJavaScriptフォルダを設定し、その中にYoutubeProtectionRemover.jsというファイルを作れば見れるようになります。
YoutubeProtectionRemover.jsの中身は↓
// ==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
です。