[Ext] Opera Wand for Firefox - SecureLogin

Announce and Discuss the Latest Theme and Extension Releases.
Post Reply
mantra
Posts: 358
Joined: September 29th, 2010, 7:21 am

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by mantra »

Str0ngwun wrote:no, no.

it's very sad #-o #-o
is the best extension!!!!!!! [-o< [-o<
http://www.pcmech.com/article/clearing- ... he-how-to/
windows firefox 49.0.2 ,thunderbird 45.4 and under linux , firefox and thunderbird are always updated
User avatar
Str0ngwun
Posts: 222
Joined: January 29th, 2011, 9:50 am

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by Str0ngwun »

actually, seems like hultmann's multifox can replace securelogin completely
mantra
Posts: 358
Joined: September 29th, 2010, 7:21 am

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by mantra »

Str0ngwun wrote:actually, seems like hultmann's multifox can replace securelogin completely


are you talking about http://br.mozdev.org/multifox/ ?

why i can't find at the firefox extension homepagehttps://addons.mozilla.org/en-US/firefox/extensions/ ?

thanks
http://www.pcmech.com/article/clearing- ... he-how-to/
windows firefox 49.0.2 ,thunderbird 45.4 and under linux , firefox and thunderbird are always updated
User avatar
Str0ngwun
Posts: 222
Joined: January 29th, 2011, 9:50 am

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by Str0ngwun »

yeah, I was talking about that extension.
Sorry, I have mistaken - it doesn't replace SecureLogin.
User avatar
Uncle Spellbinder
Posts: 3519
Joined: May 28th, 2004, 4:52 pm
Location: Highland, IN - U.S.A.
Contact:

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by Uncle Spellbinder »

I sure wish someone would pick this fine extension up and run with it. Seems sad to see such a great extension languish and die like this.
My Firefox Add-Ons Collection: Firefox Essentials
efox99
Posts: 137
Joined: March 24th, 2011, 7:55 pm

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by efox99 »

I wish firefox would have a better built in password manager that would let you log to sites with one click. That way we no longer have to depend on this addon.
mantra
Posts: 358
Joined: September 29th, 2010, 7:21 am

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by mantra »

tFF wrote:Here's a unified patch compiling both solutions. I preferred IFs and ORs to regexp as the latter is unreasonably slower for such a simple task.
Just apply the patch from a directory with an unpacked extension.
Here's what we have:

Code: Select all

--- .\chrome\content\secureLogin.js
+++ .\chrome\content\secureLogin.js
@@ -826,7 +826,7 @@
          // Skip disabled elements or elements without a "name":
           if(!elements[i].name || elements[i].disabled)
              continue;               
-         if(elements[i].type == 'text') {
+         if(elements[i].type == 'text' || elements[i].type == 'email') {
             // input of type "text" found, this is no password only form:
             inputTextFound = true;
             
@@ -1529,6 +1529,7 @@
                    }
                   
                   switch(elements[i].type) {
+                     case 'email':
                      case 'text':
                         if(!usernameField || elements[i].name != usernameField.name) {
                             addToDataString(elements[i].name, elements[i].value);

thanks
which file should i edit ?
i would like to do it manually
http://www.pcmech.com/article/clearing- ... he-how-to/
windows firefox 49.0.2 ,thunderbird 45.4 and under linux , firefox and thunderbird are always updated
User avatar
WildcatRay
Posts: 7486
Joined: October 18th, 2007, 7:03 pm
Location: Columbus, OH

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by WildcatRay »

secureLogin.js
Ray

OS'es: 4 computers with Win10 Pro 64-bit; Current Firefox, Beta, Nightly, Chrome, Vivaldi
mantra
Posts: 358
Joined: September 29th, 2010, 7:21 am

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by mantra »

WildcatRay wrote:secureLogin.js

i don't have it
%APPDATA%\Mozilla\Firefox\Profiles\ i haven't it

should i download the extension and extract to a folder?
the fix should be in bat version?
http://www.pcmech.com/article/clearing- ... he-how-to/
windows firefox 49.0.2 ,thunderbird 45.4 and under linux , firefox and thunderbird are always updated
User avatar
WildcatRay
Posts: 7486
Joined: October 18th, 2007, 7:03 pm
Location: Columbus, OH

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by WildcatRay »

mantra wrote:
WildcatRay wrote:secureLogin.js

i don't have it
%APPDATA%\Mozilla\Firefox\Profiles\ i haven't it

should i download the extension and extract to a folder?
the fix should be in bat version?

secureLogin.js is, of course, a file contained within the secure_login-0.9.9-fx.xpi file. If you open or extract the file using your favorite zip archiving program--I use 7Zip--you can then go to and edit secureLogin.js and then zip everything back up into the original xpi file.

If that is not your cup of tea, then, just download the already edited file. I thought one of us posted a link to it early in the thread.
Ray

OS'es: 4 computers with Win10 Pro 64-bit; Current Firefox, Beta, Nightly, Chrome, Vivaldi
mantra
Posts: 358
Joined: September 29th, 2010, 7:21 am

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by mantra »

WildcatRay wrote:
mantra wrote:
WildcatRay wrote:secureLogin.js

i don't have it
%APPDATA%\Mozilla\Firefox\Profiles\ i haven't it

should i download the extension and extract to a folder?
the fix should be in bat version?

secureLogin.js is, of course, a file contained within the secure_login-0.9.9-fx.xpi file. If you open or extract the file using your favorite zip archiving program--I use 7Zip--you can then go to and edit secureLogin.js and then zip everything back up into the original xpi file.

If that is not your cup of tea, then, just download the already edited file. I thought one of us posted a link to it early in the thread.

thanks
sorry i 'm a bit sleepy
but the patched version posted here doesn't work perfectly with the lastest beta version
http://www.pcmech.com/article/clearing- ... he-how-to/
windows firefox 49.0.2 ,thunderbird 45.4 and under linux , firefox and thunderbird are always updated
mantra
Posts: 358
Joined: September 29th, 2010, 7:21 am

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by mantra »

Str0ngwun wrote:Did anyone try Secure Login Rebooted?

i would like to test it
how could i install it?
thanks
http://www.pcmech.com/article/clearing- ... he-how-to/
windows firefox 49.0.2 ,thunderbird 45.4 and under linux , firefox and thunderbird are always updated
User avatar
WildcatRay
Posts: 7486
Joined: October 18th, 2007, 7:03 pm
Location: Columbus, OH

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by WildcatRay »

mantra wrote:thanks
sorry i 'm a bit sleepy
but the patched version posted here doesn't work perfectly with the lastest beta version

How is it not working for you?

I have seen no problems with either Firefox or Nightly. Can't figure out why there would be any problem with either Beta or Aurora? :-k
Ray

OS'es: 4 computers with Win10 Pro 64-bit; Current Firefox, Beta, Nightly, Chrome, Vivaldi
User avatar
Str0ngwun
Posts: 222
Joined: January 29th, 2011, 9:50 am

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by Str0ngwun »

mantra wrote:
Str0ngwun wrote:Did anyone try Secure Login Rebooted?

i would like to test it
how could i install it?
thanks

https://github.com/saneyuki/SecureLogin ... /downloads hit "download as zip" and open it.
There is a folder inside - you should put all it's contents into a new zip archive. Then just rename the new zip-file: it's extension (.zip) should be transformed into .xpi and then you just need to drag'n'drop that file into Fx.
themoo
Posts: 1
Joined: October 24th, 2012, 8:16 pm

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by themoo »

Is Secure Login Rebooted safe to use? Or should one use the old Secure Login with the modifications in this thread?
Post Reply