返回首頁 

Better GreasyFork Forum

Automatically show only "All but Script Discussions" on the GreasyFork Forum.


Install this script?
Author's suggested script

You may also like Better GreasyFork Code Reader + JS Beautifier.


Install this script
// ==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://greasyfork.org/*// @icon         https://t2.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https://greasyfork.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})();