Most active commenters
  • gpm(26)
  • dooop(4)
  • ihoonte(4)
  • NopesNopesNopes(4)
  • igivanov(3)
  • throwaway182943(3)
  • arrivance(3)
  • DamienBourg(3)
  • OzMerry(3)

←back to thread

1318 points xvector | 91 comments | | HN request time: 0.002s | source | bottom
Show context
gpm ◴[] No.19824410[source]
To re-enable all disabled non-system addons you can do the following. I am not responsible if this fucks up your install:

Open the browser console by hitting ctrl-shift-j

Copy and paste the following code, hit enter. Until mozilla fixes the problem you will need to redo this once every 24 hours:

    // Re-enable *all* extensions

    async function set_addons_as_signed() {
        Components.utils.import("resource://gre/modules/addons/XPIDatabase.jsm");
        Components.utils.import("resource://gre/modules/AddonManager.jsm");
        let addons = await XPIDatabase.getAddonList(a => true);

        for (let addon of addons) {
            // The add-on might have vanished, we'll catch that on the next startup
            if (!addon._sourceBundle.exists())
                continue;

            if( addon.signedState != AddonManager.SIGNEDSTATE_UNKNOWN )
                continue;

            addon.signedState = AddonManager.SIGNEDSTATE_NOT_REQUIRED;
            AddonManagerPrivate.callAddonListeners("onPropertyChanged",
                                                    addon.wrapper,
                                                    ["signedState"]);

            await XPIDatabase.updateAddonDisabledState(addon);

        }
        XPIDatabase.saveChanges();
    }

    set_addons_as_signed();
Edit: Cleanup up code slightly...
replies(13): >>19824419 #>>19824512 #>>19824757 #>>19824939 #>>19825095 #>>19825736 #>>19826031 #>>19826062 #>>19826188 #>>19826298 #>>19826513 #>>19827530 #>>19829476 #
leon22 ◴[] No.19826062[source]
// Re-enable all extensions

    async function set_addons_as_signed() {
        Components.utils.import("resource://gre/modules/addons/XPIDatabase.jsm");
        Components.utils.import("resource://gre/modules/AddonManager.jsm");
        let addons = await XPIDatabase.getAddonList(a => true);

        for (let addon of addons) {
            // The add-on might have vanished, we'll catch that on the next startup
            if (!addon._sourceBundle.exists())
                continue;

            if( addon.signedState != AddonManager.SIGNEDSTATE_UNKNOWN )
                continue;

            addon.signedState = AddonManager.SIGNEDSTATE_NOT_REQUIRED;
            AddonManagerPrivate.callAddonListeners("onPropertyChanged",
                                                    addon.wrapper,
                                                    ["signedState"]);

            await XPIDatabase.updateAddonDisabledState(addon);

        }
        XPIDatabase.saveChanges();
    }

    set_addons_as_signed();
replies(1): >>19826874 #
1. igivanov ◴[] No.19826874[source]
TypeError: Components.utils is undefined[Learn More]

what did I do wrong? (It's all Greek to me)

replies(1): >>19826903 #
2. gpm ◴[] No.19826903[source]
What version of firefox are you running?

Apparently beta and nightly need to change `Components.utils.import` to `ChromeUtils.import`.

But anyways, don't use this now, use the semi-official fix of clicking on this link and letting it install: https://storage.googleapis.com/moz-fx-normandy-prod-addons/e...

This is the fix Mozilla has published to be installed via shield studies, but skipping the shield studies part. You can be sure it's not malicious because it is signed by Mozilla... and if your browser installed unsigned extensions you wouldn't be looking for this solution in the first place.

replies(43): >>19826914 #>>19827772 #>>19827810 #>>19827818 #>>19827857 #>>19827897 #>>19827921 #>>19827958 #>>19828018 #>>19828116 #>>19828298 #>>19828425 #>>19828451 #>>19828536 #>>19828601 #>>19828705 #>>19828732 #>>19828877 #>>19829123 #>>19829240 #>>19829533 #>>19829848 #>>19831009 #>>19831187 #>>19831360 #>>19831455 #>>19831797 #>>19832581 #>>19832743 #>>19833096 #>>19833522 #>>19833610 #>>19833774 #>>19836075 #>>19837384 #>>19838847 #>>19839425 #>>19840363 #>>19844475 #>>19847894 #>>19857538 #>>19861568 #>>19873631 #
3. igivanov ◴[] No.19826914[source]
66.0.2 (64-bit), Win 10
replies(1): >>19826935 #
4. gpm ◴[] No.19826935{3}[source]
Maybe you pasted it in the wrong console? You need the 'browser console' which is different from the one you open on random webpages.

Go to "about:config" (in the url bar), search for and enable devtools.chrome.enabled, then hit ctrl-shift-j (or you can open it from Menu -> Web Developer -> Browser Console).

replies(1): >>19827008 #
5. igivanov ◴[] No.19827008{4}[source]
Ha! That did the trick! Though it gave me these cryptic errors the add-ons are now enabled, thanks!

TypeError: setting is undefined[Learn More] ExtensionPreferencesManager.jsm:90:7 No matching message handler for the given recipient. MessageChannel.jsm:924 1556983316679 addons.xpi-utils WARN Add-on fxmonitor@mozilla.org is not correctly signed.

Edit: another weirdness: i decided to take a look at a different computer (unrelated to this one, at work via remote desktop) which is running exactly the same FF and Windows and all add-on are enabled. it's on 24x7; i didn't do anything to it.

replies(2): >>19827058 #>>19828890 #
6. gpm ◴[] No.19827058{5}[source]
That's an expected error, it has to do with how that addon (which is non critical but published by mozilla and really just a part of firefox) is installed, once mozilla publishes a new version of firefox with an updated signing key it should fix itself.
7. burgerguy ◴[] No.19827772[source]
56.0 (64-bit), Win 10
replies(2): >>19828177 #>>19855450 #
8. Fullmetalchemis ◴[] No.19827810[source]
You are a lifesaver all addons have returned easy peasy !
9. Fullmetalchemis ◴[] No.19827818[source]
verified it works on Ubuntu 16.04 with Firefox 66.0.3
10. zalebz ◴[] No.19827857[source]
in my case I had to copy the link and paste into a fresh tab as clicking actually caused firefox (nightly) to block the install with a message: "news.ycombinator.com - Nightly prevented this site from asking you to intsall software on your computer"
replies(1): >>19827953 #
11. ◴[] No.19827897[source]
12. dooop ◴[] No.19827921[source]
"""Error while detaching the browsing context target front: Connection closed, pending request to server1.conn0.parentProcessTarget1, type detach failed..."""
13. dooop ◴[] No.19827953{3}[source]
Doesn't work for me. Not sure if a user.js alteration is blocking the fix or what...but I don't want to (even temp) remove it and I certainly don't feel like going through all those prefs to figure out the issue.
14. ihoonte ◴[] No.19827958[source]
66.0.3 (64-bit) osx 10.9.5 i only managed to change the status of devtools.chrome.enabled can only be 'modified' instead of default, not sure how you 'enable' it? new to this :) clicking or copy pasting the link gives me the error msg too
replies(2): >>19828020 #>>19828143 #
15. throwaway182943 ◴[] No.19828018[source]
I installed the fix, nothing happened (my extensions still don't work)
replies(1): >>19828196 #
16. dooop ◴[] No.19828020{3}[source]
"modified" should be fine as that would put it at "true" meaning that it's enabled. I then copy/paste the link and the fix add-on says that it's installed. however, ctrl-shift-j browser console displays:

"""WebExtensions: failed to add new intermediate certificate:"""

17. Alphos2000 ◴[] No.19828116[source]
Nothing happens for me once installed in firefox 55.0.3 32bits. Can't activate my addons.
replies(1): >>19828171 #
18. gpm ◴[] No.19828143{3}[source]
When I say "enabled" I mean set to a value of "true" (instead of "false"), "modified" is a different column.

What error do you get on the link though? That link is a better fix.

replies(1): >>19828184 #
19. gpm ◴[] No.19828171{3}[source]
That's a really old version of firefox, probably an API has changed with my workaround.

I know of an API change that means the official hotfix won't work (whether you install it my bootleg way or the official studies way).

My recommendation is to upgrade your firefox version.

replies(1): >>19828303 #
20. gpm ◴[] No.19828177{3}[source]
That's a really old version of firefox, probably an API has changed with my workaround.

I know of an API change that means the official hotfix won't work.

My recommendation is to upgrade your firefox version.

21. ihoonte ◴[] No.19828184{4}[source]
Ah okay yeah I set it to true, default was false. Error is connection failure (same error as for the add-ons)
replies(2): >>19828218 #>>19828221 #
22. gpm ◴[] No.19828196{3}[source]
After using the .xpi file?

Have you tried reinstalling the addons? I know it's less than ideal, but on one of my installs firefox had decided to uninstall the addons after disabling them (I think because it updated firefox version after disabling them). If it did that I don't think there is any way to get them back short of reinstalling.

replies(1): >>19829762 #
23. gpm ◴[] No.19828218{5}[source]
Not sure what would be causing a connection failure. I just verified that the link is still up for me, and obviously you have an internet connection if you're replying to me.

You're not behind a firewall that might be blocking it are you? E.g. being in China?

replies(4): >>19828263 #>>19828285 #>>19828324 #>>19828447 #
24. ihoonte ◴[] No.19828221{5}[source]
I'm not a developer though, so it's not super urgent. Just felt like figuring it out.
25. dooop ◴[] No.19828263{6}[source]
66.0.3 64 - Win10

FF shows the fix add-on as being installed with the standard pop-up notifications in the menu bar. However, in the browser console, I only see the error msgs that I've listed in my other posts.

???

26. gpm ◴[] No.19828285{6}[source]
Hey doop, replying to you here since your post is showing up as dead so I can't reply to it.

If you installed the xpi you shouldn't need to do anything in the browser console, and your addons should have come back. Obviously the latter didn't happen.

Chances are a connection failure in the browser console is unrelated, the browser console is basically constantly spewing error messages, you should just ignore them unless they are in response to something you did.

All I can really suggest over the internet is to try reinstalling your addons - that might work - in which case I would assume they just got uninstalled somehow. If it doesn't I'm not sure what to suggest, and I can't realistically debug something too complex over HN comments. You might just have to wait for mozilla to publish an update to the browser that fixes this properly.

I do want to emphasize that I'm just some dude on the internet being helpful by the way, not associated with Mozilla or anything.

Edit: Just saw this error message you also posted: """WebExtensions: failed to add new intermediate certificate:"""

That sounds like an issue that happened when installing the .xpi? Did it give any other related debugging information?

27. firefoxbetauser ◴[] No.19828298[source]
hmm, should it be installable by default, not only on the about:debugging page?
replies(1): >>19828321 #
28. Alphos2000 ◴[] No.19828303{4}[source]
The reason I don't want to upgrade is because I don't want to lose all my legacy addons, a lot of them dissapeared and there are no alternatives. I can't understand how Mozilla can break my browser remotely and force me tu upgrade to a more restricted browser...
replies(2): >>19828379 #>>19855434 #
29. gpm ◴[] No.19828321{3}[source]
It was for me, literally just had to click on the link, and then "Ok" on the "do you want to install this" dialogue that popped up. Not sure if firefox beta would be different.
30. ihoonte ◴[] No.19828324{6}[source]
No, not in China, no firewall. Thanks for reaching out & your suggestions though!
31. gpm ◴[] No.19828379{5}[source]
Mozilla didn't really "break your browser remotely", it's more like there was a time bomb included that just went off.

If you try hard enough you can probably fix your browser, unpack the .xpi (it's just a zip), look at the source in experiments/skeleton, and try to figure out how to run something similar in the browser console.

But I really can't recommend doing this, I appreciate it's painful, but what you're running right now is massively insecure, there are published exploits. You're just asking for viruses by interacting with the internet using something that old.

32. ConeBone ◴[] No.19828425[source]
Thank you for sharing this. It worked fine.

Couple of questions, where does this fix appear? I can't see it under addons or studies.

Will we be able to uninstall once a proper general fix has been released?

33. arrivance ◴[] No.19828447{6}[source]
I can report a connection failure while being on a unrestricted connection (University internet in the UK).
replies(1): >>19828500 #
34. hrbf ◴[] No.19828451[source]
Confirmed working with 66.0.3 (64-bit) on macOS 10.14.4 (18E226). After installation all plugins immediately came back.

This should really be one of the official ways to apply the patch instead of only telling users "it can take up to 6 hours for the fix to be installed" after enabling Shield studies. I can only imagine what kind of havoc this creates in businesses using Firefox working weekends.

replies(1): >>19831321 #
35. gpm ◴[] No.19828500{7}[source]
So, I don't have any good ideas why. Can you give me more information about what exactly happens? Can't promise anything but details might help.

I.e. something like

- I open the browser console

- I click the .xpi link

- The following appears in the browser console immediately after clicking the link:

    WebExtensions: new intermediate certificate added api.js:15
    WebExtensions: signatures re-verified api.js:23
- My addons do not come back

- If I try to install an addon from addons.mozilla.org I get <this message about the addon signature verification failing> in the browser console.

replies(1): >>19828634 #
36. ContrQ ◴[] No.19828536[source]
Applying the fix via the link above, will anything need to be done after this is all resolved. Example will this fix need removed or any settings it may edit be restored in about:config?
replies(1): >>19828650 #
37. DamienBourg ◴[] No.19828601[source]
Thks, it worked, I installed the fix. But do I have to uninstall the .xpi after? And how? Also, my addons are back, but I still have the error message (see screenshot: http://i.imgur.com/t1wb316.png ) Also do I still have to allow the "allow firefow to install and run studies"? Thks.
replies(1): >>19828631 #
38. gpm ◴[] No.19828631{3}[source]
I don't see any reason that you need to uninstall the .xpi, but you might as well. See here (hoping someone replies there with a better method of uninstalling, my method is a bad hack) https://news.ycombinator.com/item?id=19827428

You don't need to allow firefox to install and run studies, that's just a way of letting firefox automatically install this xpi.

Did that error message only appear after you installed the .xpi fix? If so it's mildly worrisome, but probably not worth spending time figuring out what it's about if all your addons are back. If it appeared when the addons were initially disabled it's not an issue at all, it's just that nothing closed it.

replies(2): >>19828905 #>>19832661 #
39. arrivance ◴[] No.19828634{8}[source]
Thanks for the response!

So,

I click the link. I click "Add", and Mozilla says addon could not be downloaded due to connection failure. Nothing appears in browser console.

Downloading an addon gives me "Download failed. Please check your connection." on the Addons site. In console, I get:

  Events to handle the installation initialized. BigInteger.js:27
  [GA: OFF] sendEvent {"hitType":"event","eventCategory":"AMO Addon Installs Download Failed","eventAction":"addon","eventLabel":"uBlock Origin"} BigInteger.js:27
  Error:
In the studies, I have https://i.imgur.com/fqrd5Jo.png. I enabled it, and have tried setting both first run, and the update interval is set to 21 (to try and force it to update it quickly).
replies(1): >>19828669 #
40. gpm ◴[] No.19828650{3}[source]
Not really, you could uninstall the .xpi but it's just a matter of "cleanliness", hoping someone replies with a better method, but I replied to this comment with one way: https://news.ycombinator.com/item?id=19827428
41. gpm ◴[] No.19828669{9}[source]
Hmm, what happens if you right click and save-link-as on the .xpi link? Or if you download it via curl or wget or something?

Edit: That studies image looks like it has already been installed, which is weird if your extensions aren't back...

replies(1): >>19828756 #
42. gpm ◴[] No.19828705[source]
Hey ConeBone, hoping you see this here since your comment is marked as dead.

The .xpi has already fixed the problem permanently (I think). You can just leave it, or if you want you can uninstall it now just as a matter of cleanliness. I'm linking to this comment about how to uninstall because I'm not satisfied with my solution and I'm hoping someone will contribute a better one: https://news.ycombinator.com/item?id=19827428

You can see the addon in about:support, but it doesn't give you a way to uninstall it, just see that it is installed.

replies(1): >>19830233 #
43. gray_-_wolf ◴[] No.19828732[source]
Worked for me, awesome! Now only question left is why this isn't mentioned in the blog post as fix for the no-studies people like me... Everybody put on your tinfoil hats.
replies(1): >>19828784 #
44. arrivance ◴[] No.19828756{10}[source]
OK, so... I right clicked, saved-as and then ran the XPI... and that worked. So thank you for that suggestion.

As for the studies image, that's only half of the fix according to the blog post [1], mine is only verification-timestamp, not signing-intermediate-bug.

[1]: https://blog.mozilla.org/addons/2019/05/04/update-regarding-...

replies(1): >>19828803 #
45. gpm ◴[] No.19828784{3}[source]
Honestly, I suspect to minimize the support load, see how many questions I got here as just a dude suggesting it unofficially that no one should really trust? It's fine at HN scale, but it's probably not fine at Mozilla scale.

They'd rather that the people who are having issues with it just wait for a new build than waste engineering time. Probably rightly so.

46. gpm ◴[] No.19828803{11}[source]
Glad to hear it worked.

You're right about the image, that's weird, I can't think of any reason why the verification-timestamp one would be necessary.

47. gpm ◴[] No.19828890{5}[source]
As for your other weirdness. Signatures are only checked once every 24 hours, and it's only been 20 since the cert expired, your other computer probably just hasn't re-verified the signatures yet. You can find some comments here about how to delay it if you want.
48. DamienBourg ◴[] No.19828905{4}[source]
"If it appeared when the addons were initially disabled it's not an issue at all, it's just that nothing closed it.

Yes, it appeared when the addons were initially disabled.

49. mrgriffin ◴[] No.19829123[source]
Thanks for this! My NixOs build of Firefox was apparently built without support for studies, but your link worked fine.
50. jcoffland ◴[] No.19829240[source]
Installing hotfix-update-xpi-intermediate@mozilla.com-1.0.2-signed.xpi on firefox-esr 60.6.1esr-1 in Debian did not work for me.
replies(1): >>19829313 #
51. gpm ◴[] No.19829313{3}[source]
I think restarting firefox after installing it should make it work with esr.
52. YLuminary ◴[] No.19829533[source]
I'm running 58.0.2. (i thought I read somewhere that this should work from 57 on.)

When I turn on Studies, and do about:studies, I see:

"What's this? Firefox may install and run studies from time to time. Learn more"

Is this what I'm supposed to be seeing?

replies(1): >>19829924 #
53. throwaway182943 ◴[] No.19829762{4}[source]
Yes, I installed the .xpi file, firefox still says my extensions are unsupported/unverified.

Reinstalling seems to work, but there are certain extensions that have data I do not want to lose. For example, if I reinstall ubock origin, I will lose all of my dynamic filtering rules.

replies(1): >>19830984 #
54. Pelmeni_ch ◴[] No.19829848[source]
66.0.3/x64 Win10 - running good with your fix. Thank you!
55. gpm ◴[] No.19829924{3}[source]
Hey, I think so (but I didn't go that route), now you either need to wait or use one of the tricks to cause it to update right away.

If I was you I would ignore Mozilla's advice to do it their way and do what I suggested above, of just clicking on the .xpi link and disabling shield studies. It will act immediately, which will give you a better idea of whether or not it will actually work with 58.0.2. I'm not sure it will (I suspect it won't in fact).

replies(1): >>19830371 #
56. QQ00 ◴[] No.19830233{3}[source]
>You can see the addon in about:support, but it doesn't give you a way to uninstall it, just see that it is installed.

you can uninstall it from about:studies

57. Skittlez ◴[] No.19830371{4}[source]
I'm on 66.0.3 and it worked for me. All my addons worked. I removed the study from about:studies and everything is fine.
58. gpm ◴[] No.19830984{5}[source]
Possibly you just need to force it to reverify again. If this is still the state of things try setting `app.update.lastUpdateTime.xpi-signature-verification` to 0 in about:config, and then restarting your browser.

But no guarantees. Do you have reason to believe the addons are still installed?

replies(1): >>19831399 #
59. FoM174 ◴[] No.19831187[source]
This worked immediately on Firefox Quantum 66.0.3 (64-bit) Thank you.
60. fao_ ◴[] No.19831317{3}[source]
Hi 'semenguzzler', as the person pointed out. The extension in question has been signed by firefox. If firefox accepted unsigned or badly-signed addons, then the problems with extensions would not exist in the first place.
61. fao_ ◴[] No.19831321{3}[source]
Hi, you're shadow-banned and this comment, which seems alright, was only visible to people who are 'showdead'.

This is not the case anymore that I have vouched for it. But, all of the comments you make in the future, and (I'm guessing here) a lot of the comments you have made, cannot be seen by normal visitors, and are greyed out and delisted to people with 'showdead' enabled.

In your case, a lot of your comments are good and make fair points, I think (I only did a quick scan down your comments page). It might be worth for you to contact `dang` or one of the other administrators to see if they would remove the shadow-ban in your case.

62. OzMerry ◴[] No.19831360[source]
"The add-on could not be downoaded because of a connection failure." <--- Grrrr!

Win 10 FF 66.0.3 64-bit (Studies checked by default anyway). In Australia.

replies(1): >>19832435 #
63. throwaway182943 ◴[] No.19831399{6}[source]
That worked, thank you!

As a side note, the value for that setting got reset after I restarted firefox.

Also, I uninstalled the fix by simply removing the extension in about:addons. Is this the correct way to do it?

replies(1): >>19832786 #
64. Hereforthefix ◴[] No.19831455[source]
Fixed everything immediately upon installing before even restarting. Afterwards went to https://news.ycombinator.com/item?id=19827428 for uninstalling, had trouble finding my profile folder on my own and quickly saw the about:support has a direct link, opened, closed firefox, deleted the xpi. All good.

Thank you, 10/10 would prefer it never happens again

65. H0LL0FIED ◴[] No.19831797[source]
Thank you for this, all of my add-ons were immediately re-enabled except for my selected theme.

Mozilla was warned beforehand about this, this problem was completely avoidable which is upsetting. I've been a fan of this browser for years but this is the 2nd time this has happened to add-ons that I can recall and to be blunt it's unacceptable.

It makes absolutely no sense that add-ons the user installs can be disabled like this without user consent, whether the add-ons in question are considered safe or not. Take into account how easy it is to migrate all of your bookmarks/etc. to another browser and this is clearly bad practice by Mozilla. It's one thing if we had a way to bypass this through Firefox directly but they chose not to include a bypass for situations such as this. It wouldn't be so bad if it wasn't for the fact that this is affecting all add-ons, adblockers/dark mode/greasemonkey/everything.

"Date expiration on code signing cert should only prevent new signatures from being considered valid -- it should not even prevent installation of old software. The fact that an expired cert disabled software is the most retarded thing I've seen this decade on any web browser." <This quote nails it on the head, this whole situation is bull.

replies(1): >>19839436 #
66. midlandsfirst ◴[] No.19832435{3}[source]
right click, download to desktop. Drag it into your firefox window. It will install then.
replies(1): >>19837261 #
67. XImpalerX ◴[] No.19832581[source]
Works, ty!
68. DamienBourg ◴[] No.19832661{4}[source]
"You don't need to allow firefox to install and run studies, that's just a way of letting firefox automatically install this xpi."

In that case I am wondering why Mozila didn't provide a direct link...it would have been faster. Maybe there is another reason to ask us to run studies...wondering.

69. johnny65350 ◴[] No.19832743[source]
Worked for me, awesome Thank you for sharing. It worked immediately.
70. gpm ◴[] No.19832786{7}[source]
Yep, you're all good. I'm surprised it let you remove the fix from about:addons but I wouldn't worry about it.

That value resetting is expected, it's the time when Firefox thinks it last checked signatures, it resetting just means this convinced it to recheck as intended.

71. westmeal ◴[] No.19833096[source]
thanks brother
72. rex0 ◴[] No.19833610[source]
Not working in 56.0.2 :((((
replies(1): >>19855448 #
73. duhwebb ◴[] No.19833774[source]
Thanks I been going in circles for a while. Tell others to go here and no more problems so far.
74. Doodlebobb ◴[] No.19836075[source]
It fixed my addons and I uninstalled and my Add on are still working.
75. OzMerry ◴[] No.19837261{4}[source]
Thank you!
76. OzMerry ◴[] No.19837384[source]
Thanks to advice from @midlandsfirst, all is restored to its rightful place. Just leaves me wondering if I would've got the auto fix from Mozilla eventually if I hadn't done this myself. When I first logged on today (Monday in Australia), it still wasn't fixed.

To see all add-ons and theme disappear before my eyes with no explanation was pretty disconcerting and leads me to say that I totally disagree with Mozilla (or anyone else) having that kind of control. Bad policy (which it is) aside, though, someone dropped the ball big-time. I'm still astonished this was even allowed to happen, bad policy or not.

77. denibertovic ◴[] No.19838847[source]
How do I verify that this is signed by Mozilla?
replies(1): >>19872934 #
78. botc76 ◴[] No.19839425[source]
I'm running Firefox 56 and installed this fix yesterday, but it does nothing for me.

Is there a way to fix this that works on older versions. Updating the browser isn't an option because I've legacy addons running that I can't work without.

replies(1): >>19855411 #
79. botc76 ◴[] No.19839436{3}[source]
Interestingly enough Greasemonkey is among the add-ons that are still running on my browser.
80. hanif184 ◴[] No.19840363[source]
Please help my payment method invited this time not okay
81. Grizzly16 ◴[] No.19844475[source]
I have tried to use this and i still can't get my addons back. Is there anything else that can help me?
82. r7al75 ◴[] No.19847894[source]
Plugins work from Microsoft Windows OS platform. But do not work through Linux OS platform
83. NopesNopesNopes ◴[] No.19855411{3}[source]
The best way is to install Waterfox, because its compatible with all the legacy Addons of FF56, and you are not gonna see any big difference.
84. NopesNopesNopes ◴[] No.19855434{5}[source]
Install WaterFox, same old FF56 but the legacy addons are still working.
85. NopesNopesNopes ◴[] No.19855448{3}[source]
Try WaterFox, same FF56 but with working addons.
86. NopesNopesNopes ◴[] No.19855450{3}[source]
Try WaterFox, its a FF56 "clone" with working addons.
87. Ahmed01 ◴[] No.19857538[source]
56.0
88. sparta0123 ◴[] No.19861568[source]
I've just done what you suggested but I'm running an older version of firefox:52.9.0 ESR (x86 en-GB) so it does not work!!!! PLEASE HELP ME, PLEASE!!!!! I have an old notebook: Microsoft Windows XP 2002,intel pentium M processor,1600MHz, 1.60GHz,760 MB RAM
replies(1): >>19872870 #
89. gpm ◴[] No.19872870{3}[source]
I'm not sure if you'll see this. HN doesn't send notifications so I only just saw your post now.

This reddit post might help you https://www.reddit.com/r/firefox/comments/bkspmk/addons_fix_...

I don't feel right responding without saying this, so even though you might have heard it before:

Using Windows XP and firefox 52 is in my humble estimation crazy. You're asking for viruses. I'd strongly recommend installing linux on your machine and using that instead.

Linux Mint Xfce 32 bit might manage to run on your system, but your pushing up against the minimum requirements for doing so. If it does run well enough it is IMHO the easiest distro for a new user to use.

If you find it doesn't, Debian with (again) xfce should run just fine. Debian isn't exactly scary to install, but it's scarier than mint for a new user.

I can't promise full support, but if you need a pointer in the right direction while installing linux, feel free to email me at morenzg@google's mail service here.com (since I'm unlikely to see any replies here).

90. gpm ◴[] No.19872934{3}[source]
Well, uh, one way is to try and install it in firefox.

Assuming you meant without installing it in firefox, I don't quite know. You're going to need to find mozilla's public keys somewhere (maybe just extract them from firefox), unpack the xpi (it's just a zip file with a different extension) and find the signature contained within, and then figure out how to verify it.

91. diver ◴[] No.19873631[source]
Help please somebody. I'm so upset. Firefox "disappeared" off my desktop and I got a notice that it couldn't find my profile file. Neither could I. I had to reinstall the entire operating system for it to work again, and my data is gone (bookmarks). My bookmarks are important data for me. If I can retrieve them, I'm leaving FFforever. And Mozilla. FF should be held responsible for my expenses and time. Help. I had no ff acct. I just chose it as my default browser.