[Ext] Opera Wand for Firefox - SecureLogin

Announce and Discuss the Latest Theme and Extension Releases.
Post Reply
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 »

I'm fine with the revised one.
Ray

OS'es: 4 computers with Win10 Pro 64-bit; Current Firefox, Beta, Nightly, Chrome, Vivaldi
User avatar
Endor
Posts: 146
Joined: January 17th, 2008, 8:03 am
Location: Somewhere in Space

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by Endor »

Hi everybody.
Today the finally released an new Version of SecureLogin.
Version 1.0.0
https://addons.mozilla.org/en-us/firefox/addon/secure-login/

It works again in Aurora and Nightly.
There only one problem, it never works on Gmail. :cry:

Can someone help please?
cheers
Endor
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko/20100101 Firefox/54.0
OS: Windows 7 Home Premium - My Versions Info
heynow
Posts: 68
Joined: March 18th, 2012, 12:58 pm

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by heynow »

Hi Endor dear friend,

have a look 2-3 pages back, there's a solution for the Google login problem, for example here. You have to change a little bit of the code in secureLogin.js. In order to edit this file you need to unpack (like a zip-file) the file secureLogin@blueimp.net.xpi. secureLogin.js is contained in secureLogin@blueimp.net.xpi > chrome > content. Open the file with an editor. Change line 835 (now after the update the line number changed a bit) in secureLogin.js from:

Code: Select all

if(elements[i].type == 'text') {

to:

Code: Select all

if(elements[i].type == 'text' || elements[i].type == 'email') {

Alternatively you can change to this as well (same effect):

Code: Select all

if (/(^text|^email)/i.test(elements[i].type)) {

Then, following line 1548 add this:

Code: Select all

case 'email':
    if(!usernameField || elements[i].name != usernameField.name) {
        addToDataString(elements[i].name, elements[i].value);
    } else {
        // This is the userName field - use the saved username as value:
        addToDataString(
            usernameField.name,
            this.getUsernameFromLoginObject(this.secureLogins[selectedIndex])
        );
    }
    break;


After changing secureLogin.js repack it to secureLogin@blueimp.net.xpi.

Thanks to everybody who helped with the code before.
Win XP Home
User avatar
Endor
Posts: 146
Joined: January 17th, 2008, 8:03 am
Location: Somewhere in Space

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by Endor »

Hi heynow

Thank you for your help.
Yes this resolved my problem. Image
Now it works fine. :D
Kind regards
Endor
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko/20100101 Firefox/54.0
OS: Windows 7 Home Premium - My Versions Info
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 »

Here is a link to a modified version of SecureLogin that addresses Gmail logging in.

It will direct you to a page where you can then download the xpi file. Then, either drag the file from a Windows Explorer (or equivalent of other OSes) to Firefox or use the Install Add-on From File... menu item under the Gear button in the Add=on Mgr.
Ray

OS'es: 4 computers with Win10 Pro 64-bit; Current Firefox, Beta, Nightly, Chrome, Vivaldi
User avatar
menet
Posts: 158
Joined: February 24th, 2006, 12:38 am
Location: France

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by menet »

I don't understand why a new 1.0.0 version of Secure Login is available since yesterday on addons.mozilla.org (before it was 0.9.9 since more than one year) and it does not contain corrections seen on the previous page of this forum entry. :(

Sebastian Tschan does not read this forum ? ???

Best regards. ;)
User avatar
Endor
Posts: 146
Joined: January 17th, 2008, 8:03 am
Location: Somewhere in Space

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by Endor »

Hi menet.
Sebastian Tschan no longer develop this add-on.
The developing is made by Abine, Inc. The online privacy company.
see here: https://addons.mozilla.org/de/firefox/user/4924308/
The apparently not read or follow this tread.

Cheers
Endor
Mozilla/5.0 (Windows NT 6.1; WOW64; rv:54.0) Gecko/20100101 Firefox/54.0
OS: Windows 7 Home Premium - My Versions Info
User avatar
menet
Posts: 158
Joined: February 24th, 2006, 12:38 am
Location: France

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by menet »

Thank Endor for the reply. :P

We understand well now the problems.

Note that in Firefox, looking Secure Login extension detail we continue to see Sebastian Tschan name only.

Best regards. ;)
efox99
Posts: 137
Joined: March 24th, 2011, 7:55 pm

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by efox99 »

WildcatRay wrote:Here is a link to a modified version of SecureLogin that addresses Gmail logging in.

It will direct you to a page where you can then download the xpi file. Then, either drag the file from a Windows Explorer (or equivalent of other OSes) to Firefox or use the Install Add-on From File... menu item under the Gear button in the Add=on Mgr.


Thank you very much!
mantra
Posts: 358
Joined: September 29th, 2010, 7:21 am

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by mantra »

Endor wrote:Hi everybody.
Today the finally released an new Version of SecureLogin.
Version 1.0.0
https://addons.mozilla.org/en-us/firefox/addon/secure-login/

It works again in Aurora and Nightly.
There only one problem, it never works on Gmail. :cry:

Can someone help please?
cheers
Endor


thanks Endor
but is there a change log?
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
efox99
Posts: 137
Joined: March 24th, 2011, 7:55 pm

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by efox99 »

WildcatRay wrote:Here is a link to a modified version of SecureLogin that addresses Gmail logging in.

It will direct you to a page where you can then download the xpi file. Then, either drag the file from a Windows Explorer (or equivalent of other OSes) to Firefox or use the Install Add-on From File... menu item under the Gear button in the Add=on Mgr.


Now it's not working with Firefox 17. It highlights the log in boxes...but it won't work.
heynow
Posts: 68
Joined: March 18th, 2012, 12:58 pm

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by heynow »

efox99 wrote:Now it's not working with Firefox 17. It highlights the log in boxes...but it won't work.


Confirmed... Same here...
Win XP Home
User avatar
Benjamin Markson
Posts: 397
Joined: November 19th, 2011, 3:57 am
Location: en-GB

Re: [Ext] Opera Wand for Firefox - SecureLogin

Post by Benjamin Markson »

I think it's a little more subtle. It doesn't work if: "Activate JavaScript protection on login" is enabled - albeit, I think this is the main reason for using Secure Login in the first place.

Meanwhile, Abine, Inc. "The online privacy company" only seem to be interested in advertising their other products having failed to even address the gmail problem.

Does anyone have any information about: Secure Login Rebooted and its creator saneyuki? There is a request on GitHub for it to be hosted as an add-on with AMO but that was made 2 months ago now.

Ben.
XUL is dead. Long live the Google Chrome Clones.
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 »

My "fixed" version is of 1.0. If you updated to 1.0.1, it probably needs the same patch as 1.0. I will get to it hopefully later today.
Ray

OS'es: 4 computers with Win10 Pro 64-bit; Current Firefox, Beta, Nightly, Chrome, Vivaldi
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 »

Here is the modified version of Secure Login.

It is version 0.9.9 with the modified code to handle Gmail (and I believe Amazon). I relabeled it 1.0.2pre so that users won't be prompted to update until a newer version is released by Abine.
Ray

OS'es: 4 computers with Win10 Pro 64-bit; Current Firefox, Beta, Nightly, Chrome, Vivaldi
Post Reply