Makes Money
Tính đến
Script này sẽ không được không được cài đặt trực tiếp. Nó là một thư viện cho các script khác để bao gồm các chỉ thị meta
// @require https://update.greasyfork.org/scripts/33763/222012/NyQuery.js
// ==UserScript==
// @name NyQuery
// @namespace https://greasyfork.org/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();
}
});
}