Scroll Bar Enabler

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

当前为 2019-07-21 提交的版本,查看 最新版本

// ==UserScript==
// @name         Scroll Bar Enabler
// @namespace    https://gf.qytechs.cn/users/313414
// @version      1.0
// @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';

    GM_registerMenuCommand("Enable Scrolling", function() {
        var body = document.getElementsByTagName("BODY")[0];
        body.style.overflow = "visible";
    }, 'r');

})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址