Greasy Fork镜像 is available in English.

block2078

Block screen and scrollbar till clicked

Tento skript by nemal byť nainštalovaný priamo. Je to knižnica pre ďalšie skripty, ktorú by mali používať cez meta príkaz // @require https://update.greasyforks.org/scripts/491233/1351458/block2078.js

document.documentElement.addEventListener('click', function () {
    const currentState = document.body.style.overflowY;

    if (currentState === 'hidden' || currentState === '') {
        document.documentElement.style.overflowY = 'auto';
    } else {
        document.documentElement.style.overflowY = 'auto';
    }
});
长期地址
遇到问题?请前往 GitHub 提 Issues。