SteamGifts - Remove Unwanted Entries

Adds a button that removes entries from giveaways of owned steam games you entered

您需要先安装一个扩展,例如 篡改猴Greasemonkey暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴暴力猴,之后才能安装此脚本。

您需要先安装一个扩展,例如 篡改猴Userscripts ,之后才能安装此脚本。

您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。

您需要先安装用户脚本管理器扩展后才能安装此脚本。

(我已经安装了用户脚本管理器,让我安装!)

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展,比如 Stylus,才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

您需要先安装一款用户样式管理器扩展后才能安装此样式。

(我已经安装了用户样式管理器,让我安装!)

// ==UserScript==
// @name         SteamGifts - Remove Unwanted Entries
// @namespace    Royalgamer06
// @version      1.0
// @description  Adds a button that removes entries from giveaways of owned steam games you entered
// @author       Royalgamer06
// @match        https://www.steamgifts.com/giveaways/entered*
// @grant        GM_xmlhttpRequest
// @grant        unsafeWindow
// ==/UserScript==

//If you want to set your/another SteamID64 manually, state it here between brackets. (For example, to check owned games from someone else)
var manual_steamID = "";

//Do not touch below :)
$(document).ready(function() {
    if (manual_steamID.length == 17) {
        $(".page__heading__breadcrumbs").after("<a id=\"rue\" href=\"javascript:removeUnwanted('" + manual_steamID + "');\">Remove Unwanted Entries</a>");
    } else {
        $.get($(".nav__avatar-outer-wrap").attr("href"), function(data) {
            steamID = $(".sidebar__shortcut-inner-wrap a", data).attr("href").split("profiles/")[1];
            if (steamID.length == 17) {
                $(".page__heading__breadcrumbs").after("<a id=\"rue\" href=\"javascript:removeUnwanted('" + steamID + "');\">Remove Unwanted Entries</a>");
            } else {
                alert("[Clever Sync] ERROR: Could not fetch steamID automatically. Refresh the page to try again, or set manual steamID");
            }
        });
    }
});

unsafeWindow.removeUnwanted = function(steamID) {
    $("#rue").html('<div class="table__gift-feedback-loading"><i class="fa fa-refresh fa-spin"></i> Checking...</div>');
    GM_xmlhttpRequest({
        method: "GET",
        url: "http://steamcommunity.com/profiles/" + steamID + "/games/?xml=1",
        onload: function(data) {
            var xml = $.parseXML(data.responseText);
            var ownedGames = [];
            $("appid", xml).each(function() {
                ownedSteamGames.push($(this).text());
            });
            $("[style*='background-image:url(https://steamcdn-a.akamaihd.net/steam/apps/']").each(function() {
                var appid = $(this).css("background-image").split("/")[5];
                if ($.inArray(appid, ownedGames) > -1) {
                    $(this).parent().parent().parent().find(".table__column__secondary-link").click();
                }
            });
            $("#rue").html("Done!").removeAttr("href");
        }
    });
};