Steam Store - Search Results Actions

Add actions to steam store search results.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

Aby zainstalować ten skrypt, wymagana będzie instalacja rozszerzenia Tampermonkey lub Userscripts.

You will need to install an extension such as Tampermonkey to install this script.

Aby zainstalować ten skrypt, musisz zainstalować rozszerzenie menedżera skryptów użytkownika.

(Mam już menedżera skryptów użytkownika, pozwól mi to zainstalować!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Będziesz musiał zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

Musisz zainstalować rozszerzenie menedżera stylów użytkownika, aby zainstalować ten styl.

(Mam już menedżera stylów użytkownika, pozwól mi to zainstalować!)

// ==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==