您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
调整页面一些样式,方便更好的使用
// ==UserScript== // @name 暗黑2T站调整 // @namespace http://tampermonkey.net/ // @version 1.0.0.2 // @description 调整页面一些样式,方便更好的使用 // @author You // @match https://traderie.com/* // @icon https://www.google.com/s2/favicons?sz=64&domain=szccinfo.com // @grant none // @license 调整页面一些样式,方便更好的使用 // ==/UserScript== (function() { 'use strict'; var customCSS = ` .tag-filters { max-height: 800px !important; } `; var styleElement = document.createElement('style'); styleElement.type = 'text/css'; styleElement.appendChild(document.createTextNode(customCSS)); document.head.appendChild(styleElement); })();