Streamate Model Blacklist Fix

Links to member profiles on Streamate's Blocked Customers admin page for models have been broken long enough! This simple script adds the missing userid back to the broken links so they work as expected again.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Greasemonkey lub Violentmonkey.

Aby zainstalować ten skrypt, wymagana jest instalacje jednego z następujących rozszerzeń: Tampermonkey, Violentmonkey.

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         Streamate Model Blacklist Fix
// @namespace    https://greasyfork.org/en/users/870933
// @version      0.3
// @description  Links to member profiles on Streamate's Blocked Customers admin page for models have been broken long enough! This simple script adds the missing userid back to the broken links so they work as expected again.
// @author       LintillaTaylor
// @match        https://legacy.streamatemodels.com/smblock.php*
// @grant        none
// ==/UserScript==

let rows = document.querySelectorAll('tbody tr');
for (let i = 0; i < rows.length; i++) {
    rows[i].querySelector('td:nth-child(2) a').href += rows[i].querySelector('td:nth-child(3) input:first-child').name.split(/[\[\]]/)[1];
}