Skip to content

Instantly share code, notes, and snippets.

@rentan
Created June 10, 2014 10:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rentan/c00223bbdb6b86a5d8a5 to your computer and use it in GitHub Desktop.
Save rentan/c00223bbdb6b86a5d8a5 to your computer and use it in GitHub Desktop.
アレのアレをアレするアレ。
// ==UserScript==
// @name ngnl_janken_quick.user.js
// @description ノーゲームノーライフじゃんけんゲーム 高速化
// @version 20140610.0
// @namespace http://rentan.org/
// @author rentan
// @grant none
// @include http://www.ngnl-janken.com/
// ==/UserScript==
(function () {
var windowSetTimeout = window.setTimeout;
window.setTimeout = function (f, ms) {
return windowSetTimeout (f, ms / 50);
};
}) ();
// EOF
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment