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