SwitchDD

Switch back deals with discussions

Stan na 21-12-2022. Zobacz najnowsza wersja.

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         SwitchDD
// @namespace    https://greasyfork.org/en/users/2205-ryzhehvost
// @version      0.5
// @description  Switch back deals with discussions
// @author       Ryzhehvost
// @match        https://www.steamgifts.com/giveaways/*
// @match        https://www.steamgifts.com/
// @grant        none
// @license      Apache-2.0
// @run-at       document-end
// ==/UserScript==

(function() {
    'use strict';
    let previews = document.querySelectorAll(".block_header_text");
    let deals = null;
    let discussions = null;
    for (let i = 0; i<previews.length; i++){
        if (previews[i].textContent=="Deals") {
            deals = previews[i].parentElement.parentElement.parentElement;
        }
        if (previews[i].textContent=="Discussions") {
            discussions = previews[i].parentElement.parentElement.parentElement;
        }
    }
    if (deals!=null && discussions!=null){
        let newdeals=deals.cloneNode(true);
        let newdiscussions=discussions.cloneNode(true);
        deals.parentNode.replaceChild(newdiscussions, deals);
        discussions.parentNode.replaceChild(newdeals,discussions);
    }
})();