您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Add actions to steam store search results.
// ==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 // ==/UserScript== // ==Code== this.$ = this.jQuery = jQuery.noConflict(true); $(document).ready(addButtons); function addButtons() { const html = `<div class="block"> <div class="block_header"> <div>Actions for all search results</div> </div> <div class="block_content block_content_inner"> <a class="btnv6_blue_hoverfade btn_medium" data-store-tooltip="Add these products to your wishlist." style="width:100%;text-align:center;margin-bottom:3px;" id="btnWishlistResults"> <span>Add to your wishlist</span> </a> <a class="btnv6_blue_hoverfade btn_medium" data-store-tooltip="Add these products to cart" style="width:100%;text-align:center;margin-bottom:3px;" id="btnCartResults"> <span>Add to cart</span> </a> <a class="btnv6_blue_hoverfade btn_medium" data-store-tooltip="Follow these products" style="width:100%;text-align:center;margin-bottom:3px;" id="btnFollowResults"> <span>Follow</span> </a> <a class="btnv6_blue_hoverfade btn_medium" data-store-tooltip="Ignore these products" style="width:100%;text-align:center;margin-bottom:3px;" id="btnIgnoreResults"> <span>Not interested</span> </a> </div> </div>`; $("#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==