// ==UserScript== // @name Skip Steam Link filter // @description Annoying but necessary, except for people that know their stuff. // @include *://steamcommunity.com/* // @namespace https://greasyfork.org/users/4813 // @version 1 // @grant none // @downloadURL none // ==/UserScript== for (link of document.querySelectorAll("a[href^='https://steamcommunity.com/linkfilter/']")) link.href = link.href.split('?')[1].split('&')[0].split('url=')[1];