Last active
August 29, 2015 14:04
-
-
Save MattJeanes/86a41923ad5c5959143d to your computer and use it in GitHub Desktop.
Bypasses the steam link filter
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==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