SteamGifts - Remove Unwanted Entries

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

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 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");
        }
    });
};