Steam Store - Search Results Actions

Add actions to steam store search results.

K instalaci tototo skriptu si budete muset nainstalovat rozšíření jako Tampermonkey, Greasemonkey nebo Violentmonkey.

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

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Violentmonkey.

K instalaci tohoto skriptu si budete muset nainstalovat rozšíření jako Tampermonkey nebo Userscripts.

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

K instalaci tohoto skriptu si budete muset nainstalovat manažer uživatelských skriptů.

(Už mám manažer uživatelských skriptů, nechte mě ho nainstalovat!)

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.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(Už mám manažer uživatelských stylů, nechte mě ho nainstalovat!)

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