Redirects all links sent through the Steam Link Filter to their original destination
// ==UserScript==
// @name Go to hell, Steam Link Filter
// @namespace /u/harmonictimecube
// @description Redirects all links sent through the Steam Link Filter to their original destination
// @include https://steamcommunity.com/linkfilter/*
// @run-at document-start
// @icon http://i.imgur.com/u0DvTg8.png
// @version 1.0
// ==/UserScript==
var url = window.location.href;
var new_url = url.replace("https://steamcommunity.com/linkfilter/?url=", "");
window.location.replace(new_url);