Created
May 5, 2017 12:37
-
-
Save koteq/465b6968a3eaad7ef72a3c94403211a0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name Sankaku fast pagination | |
// @version 0.1 | |
// @match *://chan.sankakucomplex.com/* | |
// @grant none | |
// @run-at document-start | |
// ==/UserScript== | |
/* jshint esnext: true */ | |
const originalSetTimeout = window.setTimeout; | |
window.setTimeout = function (...args) { | |
if (/FADE_IN_DURATION/.test(args[0])) { | |
args[1] /= 100; | |
} | |
originalSetTimeout(...args); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment