Planetsuzy Threads - Hide images in signatures

This script will automatically hide all images in signatures under each forum post

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==
// @namespace Planetsuzy
// @name Planetsuzy Threads - Hide images in signatures
// @description This script will automatically hide all images in signatures under each forum post
// @version 1.0
// @license MIT
// @icon http://ps.fscache.com/styles/style1/images/statusicon/forum_old.gif
// @include /^https?://(www\.)?planetsuzy\.org/showthread\.php/
// @include /^https?:\/\/(www\.)?planetsuzy\.org\/t\d+[\w-]+\.html$/
// ==/UserScript==

const decoratePosts = function() {
  
  document.querySelectorAll('table[id^=post] [id^=td_post_]')
    .forEach(function (el) {
      let sigContext = false;
      for (let i = el.childNodes.length - 1; i >= 0; i--) {
        let node = el.childNodes[i];
        if (node.nodeType === Node.COMMENT_NODE && node.textContent.trim() === '/ sig') {
          sigContext = true;
        } else if (node.nodeType === Node.COMMENT_NODE && node.textContent.trim() === 'sig') {
          sigContext = false;
        } else if (sigContext && typeof node.querySelectorAll === 'function') {
          node.querySelectorAll('img')
            .forEach(function (img) {
              img.style.display = 'none';
            });
        }
      }
    });
};


decoratePosts();