Karnage Auto Purchase

Press [`] to auto purchase

当前为 2017-02-04 提交的版本,查看 最新版本

// ==UserScript==
// @name         Karnage Auto Purchase
// @namespace    meatman2tasty
// @version      1.0
// @description  Press [`] to auto purchase 
// @author       meatman2tasty
// @match        http://karnage.io/*
// @grant        none
// ==/UserScript==

document.addEventListener("keydown", function(a) { // Press '=' to respawn
    if (a.keyCode == 192) {
buySupply(1);
    }
}, false);