Scroll Bar Enabler

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

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Greasemonkey 油猴子Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Violentmonkey 暴力猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴Userscripts ,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey 篡改猴,才能安装此脚本。

您需要先安装一款用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

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

})();