1
0
Fork 0
gather-fullscreen/inject.js

11 lines
255 B
JavaScript

{
const script = document.createElement('script');
script.innerHTML = `
window.innerWidth = window.outerWidth + 72;
window.addEventListener('resize', () => {
window.innerWidth = window.outerWidth + 72;
});
`;
document.head.appendChild(script);
}