您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Simplifies pushing the go button the the vend page gaiaonline
当前为
- // ==UserScript==
- // @name Go Pusher
- // @description Simplifies pushing the go button the the vend page gaiaonline
- // @include http://www.gaiaonline.com/*
- // @include http://gaiaonline.com/*
- // @version 0.0.1.20150102082143
- // @namespace https://greasyfork.org/users/4142
- // ==/UserScript==
- shortcut.add('z',function() {
- document.location='http://www.gaiaonline.com/marketplace/vendsearch/?sortBy=91';
- },{
- 'disable_in_input':true,
- });
- shortcut.add('x',function() {
- document.location='http://www.gaiaonline.com/marketplace/mystore';
- },{
- 'disable_in_input':true,
- });
- shortcut.add('s',function() {
- document.location='http://www.gaiaonline.com/marketplace/mystore/showinventory/DD';
- },{
- 'disable_in_input':true,
- });
- shortcut.add('e',function() {
- document.location='http://www.gaiaonline.com/marketplace/vendsearch/20/?sortBy=91&start=3';
- },{
- 'disable_in_input':true,
- });
- shortcut.add('d',function() {
- document.location='http://www.gaiaonline.com/marketplace/vendsearch/20/?sortBy=91&start=2';
- },{
- 'disable_in_input':true,
- });
- shortcut.add('c',function() {
- document.location='http://www.gaiaonline.com/marketplace/vendsearch/20/?sortBy=91&start=1';
- },{
- 'disable_in_input':true,
- });
- shortcut.add('a',function() {
- document.button='cta-button-sm';
- },{
- 'disable_in_input':true,
- });