您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Re-enables the scroll bar for sites that use anti-adblock scripts.
- // ==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";
- }
- })();