Remove Spoiler and Hidden Classes

Remove spoiler and hidden classes from elements

目前為 2024-08-26 提交的版本,檢視 最新版本

您需要先安裝使用者腳本管理器擴展,如 TampermonkeyGreasemonkeyViolentmonkey 之後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyViolentmonkey 後才能安裝該腳本。

您需要先安裝使用者腳本管理器擴充功能,如 TampermonkeyUserscripts 後才能安裝該腳本。

你需要先安裝一款使用者腳本管理器擴展,比如 Tampermonkey,才能安裝此腳本

您需要先安裝使用者腳本管理器擴充功能後才能安裝該腳本。

(我已經安裝了使用者腳本管理器,讓我安裝!)

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展,比如 Stylus,才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

你需要先安裝一款使用者樣式管理器擴展後才能安裝此樣式

(我已經安裝了使用者樣式管理器,讓我安裝!)

// ==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');
            }
        });
    });
})();