您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Remove spoiler and hidden classes from elements
// ==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'); } }); }); })();