NyQuery

Makes Money

As of 04/10/2017. See the latest version.

This script should not be not be installed directly. It is a library for other scripts to include with the meta directive // @require https://update.greasyfork.org/scripts/33763/222009/NyQuery.js

// ==UserScript==
// @name         NyQuery
// @namespace    https://greasyfork.org/users/144229
// @version      1.0
// @description  Makes Money
// @author       MasterNyborg
// @icon         http://i.imgur.com/wS1IQwd.jpg
// @require      http://code.jquery.com/jquery-latest.min.js
// ==/UserScript==

function hotKey(element, input){
    $(document).keyup(function(event){
        if (event.which == input){
            $(element).click();
        }
    });
}