// ==UserScript== // @name Steam Store - Search Results Actions // @icon http://store.steampowered.com/favicon.ico // @namespace Royalgamer06 // @author Royalgamer06 // @version 1.1.1 // @description Add actions to steam store search results. // @match *://store.steampowered.com/search/* // @grant none // @require https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js // @downloadURL https://update.greasyfork.icu/scripts/37194/Steam%20Store%20-%20Search%20Results%20Actions.user.js // @updateURL https://update.greasyfork.icu/scripts/37194/Steam%20Store%20-%20Search%20Results%20Actions.meta.js // ==/UserScript== // ==Code== this.$ = this.jQuery = jQuery.noConflict(true); $(document).ready(addButtons); function addButtons() { const html = `
Actions for all search results
Add to your wishlist Add to cart Follow Not interested
`; $("#additional_search_options").prepend(html); $("#btnWishlistResults").click(wishlistResults); $("#btnCartResults").click(cartResults); $("#btnFollowResults").click(followResults); $("#btnIgnoreResults").click(ignoreResults); } function wishlistResults() { doAction(this, "/api/addtowishlist/"); } function cartResults() { doAction(this, "/app/{{appid}}/?addtocart=1"); } function followResults() { doAction(this, "/explore/followgame/"); } function ignoreResults() { doAction(this, "/recommended/ignorerecommendation/"); } function doAction(btn, action) { $(btn).prop("disabled", true).find("span").text("Loading..."); const appids = $(".search_result_row[data-ds-appid]").get().filter(e => $(e).height() > 0).map(e => parseInt($(e).data("ds-appid"))); var ajaxDone = 0; appids.forEach(appid => { $.post(action.replace("{{appid}}", appid), { sessionid: g_sessionID, appid: appid }, function() { ajaxDone++; if (ajaxDone === appids.length) { $(btn).find("span").text("Done"); } }); }); } // ==/Code==