Better GreasyFork Forum

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

Instalar este script¿?
Script recomendado por el autor

Puede que también te guste Better GreasyFork Code Reader + JS Beautifier.

Instalar este 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://greatest.deepsurf.us/*
// @icon         https://t2.gstatic.com/faviconV2?client=SOCIAL&type=FAVICON&fallback_opts=TYPE,SIZE,URL&url=https://greatest.deepsurf.us/&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
})();