您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Gets rid of news, streams, etc buttons at the top of tftv
// ==UserScript== // @name TFTV forum buttons // @namespace deetr // @description Gets rid of news, streams, etc buttons at the top of tftv // @include /^(http)?s?:\/\/(www)?\.teamfortress\.tv.*$/ // @version 1.1 // @grant none // ==/UserScript== $(".mod-last[href*='streams'],.mod-last[href*='galleries'],.mod-last[href*='news'],.mod-last[href*='schedule']").hide(); $(".header-nav-item-wrapper[href*='threads']").width(260).css('text-align', 'center'); $(".header-nav-item-wrapper[href*='servers']").width(260).css('text-align', 'center');