Skip to content

Instantly share code, notes, and snippets.

@furugomu
Last active December 15, 2015 02:29
Show Gist options
  • Save furugomu/5187741 to your computer and use it in GitHub Desktop.
Save furugomu/5187741 to your computer and use it in GitHub Desktop.
ミリオンライブのアニメーションを全てスキップするグリモン(Chrome用)
// ==UserScript==
// @name million live
// @include http://app.ip.bn765.com/app/index.php/*
// @include http://imas.gree-apps.net/app/index.php/*
// ==/UserScript==
var script = document.createElement('script');
var f = function() {
var handler = function(e) {
if (!e.ctrlKey) return;
if (window._root && _root.next_url) {
location.href = _root.next_url;
document.removeEventListener("keydown", handler, false);
}
}
document.addEventListener("keydown", handler, false);
}
script.textContent = '('+f.toString()+')()';
document.body.appendChild(script);
@furugomu
Copy link
Author

ダウンロードしたファイルを chrome://extensions/ にドロップしてインストール

@furugomu
Copy link
Author

エロゲ風に、コントロールキーを押している間だけスキップするようにした。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment