up vote 4 down vote favorite
3
share [g+] share [fb]

How I get my passwords from Password manager at Opera?

Is there easy solution? I mean like firefox style.

link|improve this question

29% accept rate
1  
What is the Firefox style? – random Sep 21 '09 at 5:05
feedback

protected by nhinkle Apr 28 '11 at 3:36

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

4 Answers

The Question is old, nevertheless this answer may help:

view-saved-passwords-in-wand

Tamil's blog is very useful for Opera users, here you can find other topics:

other topics

link|improve this answer
feedback

Reveal Remembered Hidden Password In Opera (and others).
Its a short javascript code that will skip the asterisks.
Quite a humbling experience...

Here is one of the scripts with indentation for study,

javascript:(
 function()
 {
  vars,F,j,f,i;
  s="";
  F=document.forms;
  for(j=0;j<F.length;++j)
   {
    f=F[j];
    for(i=0;i<f.length;++i)
    {
      if(f[i].type.toLowerCase()=="password")
      s+=f[i].value+"\n";
    }
   }
   if(s)
     alert("Passwordsinformsonthispage:\n\n"+s);
   else
     alert("Therearenopasswordsinformsonthispage.");
 }) ();

link|improve this answer
feedback

Opera PowerButtons

http://operawiki.info/PowerButtons

link|improve this answer
feedback

If you would like to recover all your passwords, the following article discusses several possibilities, both free and shareware : "How To : Opera Password Recovery".

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.