firefox-scripts
firefox-scripts copied to clipboard
Double-clicking on the status-bar doesn't resize window & cannot drag the window as well
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?