firefox-scripts icon indicating copy to clipboard operation
firefox-scripts copied to clipboard

Double-clicking on the status-bar doesn't resize window & cannot drag the window as well

Open momo1958 opened this issue 6 months ago • 0 comments

UPDATE - SOLVED!

IN https://github.com/xiaoxiaoflood/firefox-scripts/blob/master/chrome/status-bar.uc.js:

REPLACE: document.getElementById('fullscreen-and-pointerlock-wrapper').insertAdjacentElement('afterend', bottomBox);

WITH: let before = document.getElementById('fullscreen-and-pointerlock-wrapper'); if (!before) before = document.getElementById('pointerlock-warning'); before.insertAdjacentElement('afterend', bottomBox);


Hello,

Firefox 139.

Double-clicking on the status-bar doesn't resize window & cannot drag the window as well.

Tried help with ChatGPT, nothing worked and became more and more complicated...

Help?

momo1958 avatar Jun 22 '25 10:06 momo1958