Scroll Bar Enabler

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

Dovrai installare un'estensione come Tampermonkey, Greasemonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Violentmonkey per installare questo script.

Dovrai installare un'estensione come Tampermonkey o Userscripts per installare questo script.

Dovrai installare un'estensione come ad esempio Tampermonkey per installare questo script.

Dovrai installare un gestore di script utente per installare questo script.

(Ho già un gestore di script utente, lasciamelo installare!)

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione come ad esempio Stylus per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

Dovrai installare un'estensione per la gestione degli stili utente per installare questo stile.

(Ho già un gestore di stile utente, lasciamelo installare!)

// ==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";
    }

})();