// ==UserScript== // @name 让greasyfork论坛还你一个真正的论坛 Let the greasyfork forum return you a real forum // @namespace a-new-greasyfork-bbs // @version 0.1.1 // @description 让greasyfork论坛默认显示问题讨论而不是脚本反馈,还原真正的论坛功能。Let the greasyfork Forum display problem discussion instead of script feedback by default. Restore the real forum function. // @author Wilson // @icon https://greasyfork.org/assets/blacklogo16-f649ec98e464d95b075234438da0fa13233b467b3cd1ad020f0ea07dea91d08c.png // @match *://greasyfork.org/* // @downloadURL none // ==/UserScript== (function() { 'use strict'; var bbslink=document.querySelector(".forum-link a"); if(bbslink.href.indexOf("/no-scripts")===-1) bbslink.href=bbslink.href+"/no-scripts"; })();