Multi-Page Scroller

Exhentai Multi-Page Scroller

As of 2022-08-22. See the latest version.

// ==UserScript==
// @name         Multi-Page Scroller
// @version      0.1.1
// @description  Exhentai Multi-Page Scroller
// @author       Seldon Horizon
// @match        https://exhentai.org/mpv/*
// @grant        none
// @require      http://code.jquery.com/jquery-1.11.0.min.js
// @license      MIT
// @namespace http://tampermonkey.net/
// ==/UserScript==

(function() {
    'use strict';
    $("div#bar3").css("left", "-20px");
    $("div#pane_images").css("overflow-x", "hidden").css("overflow-y", "scroll");
})();