您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Expand spoiler tags on SpaceBattles, Sufficient Velocity, and Questionable Questing.
当前为
// ==UserScript== // @name SB/SV/QQ Expand Spoiler Tags (XF2) // @namespace https://greasyfork.org/users/13408-mistakenot // @version 1.1.20190713 // @description Expand spoiler tags on SpaceBattles, Sufficient Velocity, and Questionable Questing. // @author mistakenot // @license Mozilla Public License, v. 2.0 // @match *://forums.spacebattles.com/* // @match *://forums.sufficientvelocity.com/* // @match *://forum.questionablequesting.com/* // @grant none // ==/UserScript== // reveal all spoilers function revealSpoilers() { var buttonList = document.querySelectorAll(".bbCodeSpoilerButton, .bbCodeSpoiler-button"); for (var i = 0; i < buttonList.length; i++) { var button = buttonList[i]; button.click(); } } // trigger function on page load window.addEventListener("load", revealSpoilers, false);