Multi-Page Scroller

try to take over the world!

Tính đến 28-04-2018. Xem phiên bản mới nhất.

// ==UserScript==
// @name         Multi-Page Scroller
// @namespace    http://tampermonkey.net/
// @version      0.1
// @description  try to take over the world!
// @author       You
// @match        https://exhentai.org/mpv/*
// @grant        none
// @require    http://code.jquery.com/jquery-1.11.0.min.js
// ==/UserScript==

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