Remove Spoiler and Hidden Classes

Remove spoiler and hidden classes from elements

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey, το Greasemonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Violentmonkey για να εγκαταστήσετε αυτόν τον κώδικα.

θα χρειαστεί να εγκαταστήσετε μια επέκταση όπως το Tampermonkey ή το Userscripts για να εγκαταστήσετε αυτόν τον κώδικα.

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

Θα χρειαστεί να εγκαταστήσετε μια επέκταση διαχείρισης κώδικα χρήστη για να εγκαταστήσετε αυτόν τον κώδικα.

(Έχω ήδη έναν διαχειριστή κώδικα χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

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.

(Έχω ήδη έναν διαχειριστή στυλ χρήστη, επιτρέψτε μου να τον εγκαταστήσω!)

// ==UserScript==
// @name         Remove Spoiler and Hidden Classes
// @namespace    http://tampermonkey.net/
// @version      0.2
// @description  Remove spoiler and hidden classes from elements
// @author       bighype
// @include      /^https:\/\/www\.empornium\.(me|sx|is)\/torrents\.php\?id=\d+/
// @license      MIT

// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Select the elements with the "spoiler" and "hidden" classes
    var elements = document.querySelectorAll('blockquote.spoiler.hidden');

    // Loop through the elements and remove the classes
    elements.forEach(function(element) {
        element.classList.remove('spoiler', 'hidden');

        // Show images within the blockquote and replace data-src with src
        var images = element.querySelectorAll('img.bbcode.scale_image');
        images.forEach(function(img) {
            img.style.display = 'inline-block';
            img.style.visibility = 'visible';
            var dataSrc = img.getAttribute('data-src');
            if (dataSrc) {
                img.setAttribute('src', dataSrc);
                img.removeAttribute('data-src');
            }
        });
    });
})();