Ich seh gerade das man eigene JavaScripts schreiben kann die Opera dann... anwendet...
Ich versteh das Feature zwar noch nicht so recht, klingt aber interessant und ich hab das Gefühl da wird man massig Features mit aus Opera herauskitzeln können.
Nur... ich verabscheue JavaScript auf Websites. Dementsprechend hab ichs nie gelernt... abgesehen davon das die Syntax häßlich ist. XD

http://my.opera.com/Rijk/journal/54
http://nontroppo.org/wiki/UserJS
http://people.opera.com/rijk/opera/userjs.html

Hmjoa. Wenn ihr da ein interessantes Script entdeckt. Zeigts und beschreibts.


UPDATE:
Ich hab was!
Und zwar ein User JavaScript (UJS) das ein kleines Panel einblendet sobald eingebettete Flashes in einer Seite sind.
Über dieses Panel kann man dann ganz einfach die eingebetteten Flashes entweder in einem eigenen Tab öffnen, oder per rechtsklick->Ziel speichern... direkt runterladen ohne umständlich im Quelltext der Seite rumzufummeln.

Hier das Original-Script:
http://vvs.post.lg.ua/?fl=0&i=15

Hier meine Platzoptimierte + IMO verschönerte Version:
Code:
<!--
//-----------------------------
//Created by VVSite (Vitaliy V Sadovskiy)
//          31.03.2005
//  VVSite Flash Panel for Opera 8
//-----------------------------

//!!!!!!!!
//!!!!!!!!------------------ Settings for show or hide Flash Contents
//!!!!!!!!
		var FH=1;            //0 = hide flash; 1 = show flash
//!!!!!!!!
//!!!!!!!!------------------ Settings for show or hide Flash Contents
//!!!!!!!!

//------------------------ Ðàáîòà ñ flash íà ñòðàíèöå
if(window.location.href.indexOf('www.post.lg.ua')<0){ 
//------------------>>>>>>>>>>>>>>>>>>>>>>
document.addEventListener('load', 
		function(ev){
		//--------------------------
		var html0=document.getElementsByTagName('body');
		var ramka=document.createElement('div');
		var font=document.createElement('font');
		var tablo=document.createElement('table');
		ramka.className="iut";
		tablo.style.width='100%';
		tablo.style.height='100%'
		tablo.cellpadding='0';
		tablo.cellspacing='0';
		tablo.border='0';
		tr1=document.createElement('tr');
		td1=document.createElement('td');
		td1.align='center';
		td1.valign='middle';

		td2=td1.cloneNode(false);
		td2.align='left';
		td2.valign='middle';
		td3=td2.cloneNode(false);
		td4=td1.cloneNode(false);
		//td5=td1.cloneNode(false);
		//td5.align='right';
		td1.valign='middle';
		
		td3.align='left';
		
		td1.style.width='20';
		td2.style.width='140';
		td4.style.width='20';

		tr1.appendChild(td1);tr1.appendChild(td2);tr1.appendChild(td3);tr1.appendChild(td4);
		tablo.appendChild(tr1);
		//-------------------------- Bezeichnung des Panels
		font.color='DarkBlue';
		font.style.fontSize='14';
		font.style.fontFamily='Arial';
		font.style.fontWeight='bold';
		font.appendChild(document.createTextNode('Flash Kontrolle'));
		font1=document.createElement('a');
		font1.style.color='Red';
		font1.style.fontSize='14';
		font1.style.fontFamily='Arial';
		font1.style.fontWeight='bold';
		font1.style.textDecoration='none';

		//-------------------------- Panel verstecken
		linkHide=font1.cloneNode(false);
		linkHide.style.fontSize='11';
		linkHide.style.backgroundColor='#FFCC00';
		linkHide.style.display='block';
		linkHide.style.borderTop='1px solid Black';
		linkHide.style.borderLeft='1px solid Black';
		linkHide.style.borderBottom='1px solid Black';
		linkHide.style.borderRight='1px solid Black';
		linkHide.style.cursor='hand';
		//linkHide.href='#';
		linkShow=linkHide.cloneNode(false);

		linkHide.innerHTML='-<br>';
                linkShow.innerHTML='+<br>';

		font1.onmousemove=function(){
		ramka.style.backgroundColor='#FCFED8';
		}
		font1.onmouseout=function(){
		ramka.style.backgroundColor='#E6E6E6';
		}
		
		ramka.align='center';
		ramka.style.width=window.innerWidth-18;
		rW=ramka.style.width.replace(/\px/g,"");
		ramka.style.position='absolute';
		ramka.style.posTop=0;
		ramka.style.posLeft=0-rW+20;
		ramka.style.backgroundColor='#ffffff'; 
		ramka.style.borderBottom='1pt solid Black'
		ramka.style.borderTop='1pt solid Black'
		ramka.style.borderLeft='1pt solid Black'
		ramka.style.borderRight='1pt solid Black'

		linkShow.onclick=function(){
		ramka.style.width=window.innerWidth-17;
		ramka.style.posLeft=0;
		}

		linkHide.onclick=function(){
		ramka.style.width=window.innerWidth;
		rW=ramka.style.width.replace(/\px/g,"");
		ramka.style.posLeft=0-rW+20;
		}

		//------------------- "Hide"-Button
		var but=document.createElement('input');
		but.type='button';
		but.id='b1';
		but.name='b1';
		but.value='H';
		but.style.color='Red';
		but.style.fontSize='10';
		but.style.fontFamily='Arial';
		but.style.borderTop='1px solid Black';
		but.style.borderLeft='1px solid Black';
		but.style.borderBottom='1px solid Black';
		but.style.borderRight='1px solid Black';
		but.style.backgroundColor='#ffffff';
		but.style.width='22';
		but.style.height='13';

		//------------ Ñîáûòèÿ äëÿ êíîïîê
		but.onclick=function (){
		var flash=document.getElementsByTagName('embed');
			if (but.value=='H'){
			for (j=0; j<flash.length; j++){
				flash[j].style.display='none';
			}		
			but.value='S';but1.value='S';
			but.style.color='Blue';but1.style.color='Blue';
			} else {
			for (j=0; j<flash.length; j++){
				flash[j].wmode='transparent';
				flash[j].wmode='opaque';
				flash[j].style.display='';
			}		
			but.value='H';but1.value='H';
			but.style.color='Red';but1.style.color='Red';
			}
		};
		//------------ Ñîáûòèÿ äëÿ êíîïîê

		but1=but.cloneNode(false);
		but1.onclick=but.onclick;
		but2=but.cloneNode(false);
		//------------------- Êíîïêè
		//------------------- Ñïèñîê
		
		var list1=document.createElement('div');
		list1.align='justify';
		list1.innerHTML='<font style="font-family: Arial; font-size: 10pt" color=Black>Flashes auf dieser Seite:</font> ';
		//-----------
			linkFlash=document.createElement('a');
			linkFlash.style.color='Blue';
			linkFlash.style.fontSize='14';
			linkFlash.style.fontWeight='bold';
			linkFlash.style.fontFamily='Arial';
			linkFlash.style.textDecoration='none';
		src='';
		countF=1;
		razB=document.body.innerHTML.split(' ');
			for (j=0; j<razB.length-1; j++){
				if(razB[j].indexOf('.swf')>-1 && razB[j].indexOf('http')>-1 && razB[j].indexOf('>http')<0){
					src=razB[j].split('=')[1];
					bom=src.indexOf('.swf')+4;
					src=src.substring(0,bom);
					bom1=src.indexOf('http')+4;
					src=src.substring(bom1-4,src.length);
					src=src.replace(/\"/g,"");
					src=src.replace(/\'/g,"");
					linkFlash1=linkFlash.cloneNode(false);
					linkFlash1.appendChild(document.createTextNode(countF));	
					linkFlash1.href=src;
					list1.appendChild(linkFlash1);
					list1.appendChild(document.createTextNode(', '));
					countF+=1;
				}				
			}

		//}
		//------------------- Ñïèñîê
		//------------------- Ñïèñîê1-2
		var list0=document.createElement('select');
		list0.style.color='DarkBlue';
		list0.style.fontSize='9';
		list0.style.fontFamily='Arial';
		list0.style.width='20';
		list0.style.height='12';
		list0.style.borderTop='1px solid Black';
		list0.style.borderLeft='1px solid Black';
		list0.style.borderBottom='1px solid Black';
		list0.style.borderRight='1px solid Black';
		opt=document.createElement("option");
		opt.text='^';
		opt.value='';
		list0.appendChild(opt);
		//-----------
		src='';
		countF=1;
		razB=document.body.innerHTML.split(' ');
			for (j1=0; j1<razB.length-1; j1++){
				//alert(razB);
				if(razB[j1].indexOf('.swf')>-1 && razB[j1].indexOf('http')>-1 && razB[j1].indexOf('>http')<0){
					src=razB[j1].split('=')[1];
					bom=src.indexOf('.swf')+4;
					src=src.substring(0,bom);
					bom1=src.indexOf('http')+4;
					src=src.substring(bom1-4,src.length);
					src=src.replace(/\"/g,"");
					src=src.replace(/\'/g,"");
					opt=document.createElement("option");
					list0.appendChild(opt);
					opt.text=countF; 
					opt.value=src;
					countF+=1;
				}				
			}

		list2=list0.cloneNode(true);
		//------------------- Ñïèñîê1-2


		td1.appendChild(linkHide);
		td1.appendChild(but1);
		td1.appendChild(list2);

		td2.appendChild(font1);
		td2.appendChild(font);

		td3.appendChild(list1);

		td4.appendChild(linkShow);
		td4.appendChild(but);
		td4.appendChild(list0);

		ramka.appendChild(tablo);
		ramka.style.zIndex='100000';
		if (src>''){html0[0].appendChild(ramka,null);}
		if (FH==0){	but.click(); };
		//---------------------
		window.onresize=function(){
		ramka.style.width=window.innerWidth-17;
		rW=ramka.style.width.replace(/\px/g,"");
		ramka.style.posLeft=0-rW+20;
		}

		window.onscroll=function(){
		ramka.style.posTop=document.body.scrollTop;
		}
	
		//------------ Ñîáûòèÿ äëÿ ñïèñêîâ
		list0.onchange=function(){
		top.location.href=this.value;
		};
		list2.onchange=list0.onchange;
		//------------ Ñîáûòèÿ äëÿ ñïèñêîâ
	
		}
, false); 
//------------------>>>>>>>>>>>>>>>>>>>>>>
}

//-->
Kopiert den Code in eine .js-Datei und verschiebt sie in euer UJS-Verzeichnis. Wie man UJS' aktiviert, erfahrt ihr auf den Seiten die ich oben in meinem Post gelinkt hab.


EDIT @ Pik&Soheil:
Euch fehlen die Minimize-Buttons?
Kein Ding:
"Minimize the current page (short title)"