Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Infocatcher/14c2999fcc980d368347 to your computer and use it in GitHub Desktop.
Save Infocatcher/14c2999fcc980d368347 to your computer and use it in GitHub Desktop.
// ==UserScript==
// @name Skip steamcommunity.com/linkfilter
// @namespace dev/null
// @include https://steamcommunity.com/linkfilter/?url=*
// @version 0.1
// @run-at document-start
// @grant none
// ==/UserScript==
if(/\?url=(.*)$/.test(location.href))
location.replace(RegExp.$1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment