Scroll Bar Enabler

Re-enables the scroll bar for sites that use anti-adblock scripts.

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey, Greasemonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

คุณจะต้องติดตั้งส่วนขยาย เช่น Tampermonkey หรือ Violentmonkey เพื่อติดตั้งสคริปต์นี้

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

You will need to install an extension such as Tampermonkey to install this script.

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         Scroll Bar Enabler
// @namespace    https://greasyfork.org/users/313414
// @version      1.1
// @description  Re-enables the scroll bar for sites that use anti-adblock scripts.
// @author       Matt-RJ
// @match        *://*/*
// @grant        unsafeWindow
// @grant        GM_registerMenuCommand
// ==/UserScript==

(function() {
    'use strict';

    /*
    Whether the script runs automatically on every page.
    If set to false, use the extension button -> enable scrolling to run manually.
    */
    var automaticallyEnable = true;

    /*
    Some sites disable scrolling after the page has loaded. enableDelay is how long, in ms,
    before the script runs automatically to enable scrolling again.
    */
    var automaticEnableDelay = 500;

    if (automaticallyEnable) {
        setTimeout(function() {
            enableScrolling();
        }, automaticEnableDelay);
    }

    GM_registerMenuCommand("Enable Scrolling", function() {
        enableScrolling();
    }, 'r');

    function enableScrolling() {
        var body = document.getElementsByTagName("BODY")[0];
        body.style.overflow = "visible";
    }

})();