relist all

relist all :)

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         relist all
// @namespace    https://nookazon.com/profile/*
// @version      0.1
// @description  relist all :)
// @author       You
// @match        https://nookazon.com/profile/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=nookazon.com
// @grant        none
// ==/UserScript==

window.onload = function(){
    setTimeout(function() {
        //grab  menu bar
        const topBar = document.querySelector('div.profile-tabs');
        const menu = topBar.nextElementSibling.firstChild.firstChild;
        menu.id = 'menu';

        //create button el
        const btn = document.createElement('a');
        btn.innerHTML = 'Relist All';
        btn.classList.add('kBQGpb');
        btn.style.marginLeft = '10px';
        btn.id = 'relistAll';
        menu.appendChild(btn);
        btn.addEventListener('click', relistAll);

        //label relist btns
        let listingActionBar = document.querySelectorAll('.listing-action-bar');
        listingActionBar.forEach((element) => {
        let greenBtnContainer = element.children[3];
        let greenBtn = greenBtnContainer.childNodes[0];
        greenBtn.className += (' relist-btn');
        });
    },1000);
};

function relistAll() {
    let btn = document.querySelectorAll('.relist-btn');
    let eligible;
    btn.forEach((btn) => {
        btn.click();
        let btnColor = window.getComputedStyle(btn).color;
        console.log(btnColor);
        if (btnColor == 'rgb(234, 104, 94)') {
            eligible = false;
        } else {
            eligible = true;
        }
    });

    eligible ? alert('Relisted!') : alert("Can't relist yet!");
}