您需要先安装一个扩展,例如 篡改猴、Greasemonkey 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 暴力猴,之后才能安装此脚本。
您需要先安装一个扩展,例如 篡改猴 或 Userscripts ,之后才能安装此脚本。
您需要先安装一款用户脚本管理器扩展,例如 Tampermonkey,才能安装此脚本。
您需要先安装用户脚本管理器扩展后才能安装此脚本。
Automatically show only "All but Script Discussions" on the GreasyFork Forum.
// ==UserScript== // @name Better GreasyFork Forum // @namespace BetterGreasyForkForum // @version 6 // @description Automatically show only "All but Script Discussions" on the GreasyFork Forum. // @author hacker09 // @match https://gf.zukizuki.org/* // @icon https://t2.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https://gf.zukizuki.org/&size=64 // @grant none // ==/UserScript== (function() { 'use strict'; document.querySelector("li.forum-link > a").href = '/discussions/no-scripts'; //Make the Default Forum button redirect to another url })();