Makes Money
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.greatest.deepsurf.us/scripts/33763/222016/NyQuery.js
// ==UserScript==
// @name NyQuery
// @namespace https://greatest.deepsurf.us/users/144229
// @version 1.0.1
// @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).keypress(function(event){
if (String.fromCharCode(event.which) == input){
$(element).click();
}
});
}
function clickText(text, input){
$(document).keypress(function(event){
if (String.fromCharCode(event.which) == input){
$(':contains('+text+')').click();
}
});
}