Skip to content

Instantly share code, notes, and snippets.

@MattJeanes
Last active August 29, 2015 14:04
Show Gist options
  • Save MattJeanes/86a41923ad5c5959143d to your computer and use it in GitHub Desktop.
Save MattJeanes/86a41923ad5c5959143d to your computer and use it in GitHub Desktop.
Bypasses the steam link filter
// ==UserScript==
// @name Steam linkfilter bypass
// @namespace http://www.mattjeanes.com/
// @description Automatically bypasses the steam linkfilter.
// @include http*://steamcommunity.com/linkfilter/?url=*
// @run-at document-start
// ==/UserScript==
var str = window.location.href
var search = "?url="
window.location.replace(str.substr(str.indexOf(search)+search.length))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment