Hide Already-Nominated Maps

Hides already nominated Maps of the Week

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         Hide Already-Nominated Maps
// @namespace    https://greasyfork.org/en/users/689296
// @version      1.0.0
// @description  Hides already nominated Maps of the Week
// @author       [email protected]
// @license      MIT
// @icon         https://avatars1.githubusercontent.com/u/55962744
// @match        *://*warzone.com/mapoftheweek/Nominate
// @grant        none
// @run-at       document-end
// ==/UserScript==
nomineesTable = document.getElementsByClassName("dataTable")[0];
console.log("Hiding already-nominated maps of the week!");
for (var row_idx = 0, row; row = nomineesTable.rows[row_idx]; row_idx++) {
    if (row.cells[1].textContent.includes("been voted on before")) {
        row.style = "display: none";
    }
}