External Publication
Visit Post

Extension Releases/Support • Re: Bypass Cloudflare with Firefox Cookies

Pale Moon forum - Forum index [Unofficial] April 11, 2026
Source

Found a minor issue with the code to replace the Add-ons Manager icon. If you stay in the Add-ons Manager, pick any other extension or category then back, the original icon will return. If you close the Add-ons Manager and reopen it (i.e. its tab) the same will occur. The new icon only "sticks" for the first visit in the Add-ons Manager.

Played a bit with AI and the only solution was to replace this in the uc.js file:

From:

CODE:

setTimeout(function() { // icon replacement}, 100);

To:

CODE:

setInterval(function() { // icon replacement}, 3000);

This change was also suggested:

CODE:

"if(page_URL == "about:addons"){

to:

CODE:

if(page_URL.startsWith("about:addons")){

Discussion in the ATmosphere

Loading comments...