Du skal logge ind eller oprette en konto for at kunne fortsætte.
Automatically show only "All but Script Discussions" on the GreasyFork Forum.
Du vil måske også kunne lide Better GreasyFork Code Reader + JS Beautifier
// ==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 })();