Firefox EZ Fix

Open browser console with ctrl-shift-J
Paste and enter
// 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();

If you can't type, set devtools.chrome.enabled to true in about:config.
>tfw browsing with all my extensions

Attached: 1523856940721.jpg (249x249, 8K)

>it works
I thought Firefox was a secure browser!

Attached: IMG_1163.jpg (300x201, 20K)

Attached: Screen Shot 2019-05-03 at 10.26.21 PM.png (1386x840, 146K)

Worked for me

gracias amigo

Attached: 1555816641844.jpg (900x1350, 91K)

Fixed my installed addons but wont install new ones

On firefox dev edition you can change xpinstall.signatures.required to false and it fixes it on that browser so u can get new addons there

>it works

Attached: 1553835249798.jpg (900x506, 94K)

I love you so much

Attached: 1462988240672.jpg (866x1300, 146K)

Dang, who would of thought a badfrogposter on asking me to run code directly into my web browser was actually being helpful and earnest.

thanks, user. It works

Attached: D5eImmKUUAAE-TO.jpg large.jpg (992x1403, 119K)