SwitchDD

Switch back deals with discussions

Bu betiği kurabilmeniz için Tampermonkey, Greasemonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu betiği kurabilmeniz için Tampermonkey ya da Violentmonkey gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

Bu betiği kurabilmeniz için Tampermonkey ya da Userscripts gibi bir kullanıcı betiği eklentisini kurmanız gerekmektedir.

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

Bu komut dosyasını yüklemek için bir kullanıcı komut dosyası yöneticisi uzantısı yüklemeniz gerekecek.

(Zaten bir kullanıcı komut dosyası yöneticim var, kurmama izin verin!)

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.

(Zateb bir user-style yöneticim var, yükleyeyim!)

// ==UserScript==
// @name         SwitchDD
// @namespace    https://greasyfork.org/en/users/2205
// @version      0.5
// @description  Switch back deals with discussions
// @author       Rudokhvist
// @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);
    }
})();