Greasy Fork

Greasy Fork is available in English.

SteamAutoDiscoveryQueue

Original by Dogfight360

目前为 2015-12-25 提交的版本,查看 最新版本

// ==UserScript==
// @name         SteamAutoDiscoveryQueue
// @version      0.1
// @description  Original by Dogfight360
// @author       WK
// @include      http*://store.steampowered.com/app/*
// @grant        none
// @namespace http://greasyfork.icu/users/14488
// ==/UserScript==

// Your code here...

var refreshQueueBtn = document.getElementById('refresh_queue_btn');
if (refreshQueueBtn != null)
    refreshQueueBtn.children[0].click();

var nextInQueueForm = document.getElementById('next_in_queue_form');
if (nextInQueueForm != null)
    nextInQueueForm.submit();