Greasy Fork

NyQuery

Makes Money

目前为 2017-10-04 提交的版本。查看 最新版本

此脚本不应直接安装,它是一个供其他脚本使用的外部库。如果您需要使用该库,请在脚本元属性加入:// @require https://update.greasyfork.icu/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();
        }
    });
}