您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
在洛谷的个人主页自动取消隐藏个人介绍
// ==UserScript== // @name 洛谷个人介绍取消隐藏 // @namespace https://greasyfork.org/zh-CN/scripts/530176 // @namespace http://www.luogu.com.cn/user/527300 // @version 0.4 // @description 在洛谷的个人主页自动取消隐藏个人介绍 // @author W_C_B_H(白猫戴黑帽) // @match https://www.luogu.com.cn/user/* // @grant none // @license MIT // ==/UserScript== (function() { 'use strict'; function showIntro() { const divIntro = document.getElementsByClassName("introduction marked"); divIntro[0].style = ""; const cards = document.getElementsByClassName('card padding-default'); const redBox = cards[cards.length - 1].childNodes[4]; redBox.textContent = '\n由于系统没有维护,该内容仍然可见。\n'; } window.onload = showIntro; })();