Block screen and scrollbar till clicked
สคริปต์นี้ไม่ควรถูกติดตั้งโดยตรง มันเป็นคลังสำหรับสคริปต์อื่น ๆ เพื่อบรรจุด้วยคำสั่งเมทา // @require https://update.greasyfork.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';
}
});