Exhentai Multi-Page Scroller
Verze ze dne
// ==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");
})();